SetEventNotifications

Description

Request which contains the EventNotification mask.

Response communicates status.

Message definitions

message SetEventNotificationsRequest {
    required uint32 NotificationMask = 1; // Bitmask for max 32 events, using NotificationBit for bit positions.
}

message SetEventNotificationsResponse {
    required Status status = 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 SetEventNotificationsRequest sent to 'device-01' to set EventNotifications:

OSLP SetEventNotificationsResponse sent to platform:

Last updated

Was this helpful?