StopSelfTest

Description

Request that notifies the device to switch all light relays off.

Response communicates status and the result of the test.

Message definitions

message StopSelfTestRequest {
    optional bool present = 1 [default = true];
}

message StopSelfTestResponse {
    required Status status = 1;
    required bytes selfTestResult = 2; // [(nanopb).max_size = 1];
}

Data types

enum Status {
    OK = 0;
    FAILURE = 1; // general failure
    REJECTED = 2; // request received in wrong state
}

Example

Soap requests and responses sent to and from platform:

OSLP StopSelfTestRequest sent to 'device-01':

OSLP StopSelfTestResponse sent to platform:

Last updated

Was this helpful?