Request that notifies the device to switch all light relays off.
Response communicates status and the result of the test.
message StopSelfTestRequest {
optional bool present = 1 [default = true];
}
message StopSelfTestResponse {
required Status status = 1;
required bytes selfTestResult = 2; // [(nanopb).max_size = 1];
}
enum Status {
OK = 0;
FAILURE = 1; // general failure
REJECTED = 2; // request received in wrong state
}
Soap requests and responses sent to and from platform:
LianderNetManagement
liander gebruiker
WEB_NET_MANAGEMENT
device-01
LianderNetManagement|||device-01|||20160104160800238
device-01
LianderNetManagement
liander gebruiker
WEB_NET_MANAGEMENT
LianderNetManagement|||device-01|||20160104160800238
device-01
OK
OSLP StopSelfTestRequest sent to 'device-01':
stopSelfTestRequest {
}
OSLP StopSelfTestResponse sent to platform:
stopSelfTestResponse {
status: OK
selfTestResult: "\000"
}