NMAPendingOutOfBandOperation
@objc
public protocol NMAPendingOutOfBandOperation
The object defining a non-redeemed out-of-band operation as defined in the in the Get Device Out-of-Band Operations service.
See
SeeNMAOutOfBandOperation
See
SeeNMAPendingOutOfBandOperations
-
The time the out-of-band operation was created (i.e. the time the dispatch occurred). This can be used by the mobile clients to know which is the latest operation for the device.
Declaration
Swift
var creationTimeInEpochMillis: Int { get }
-
The name of the dispatch channel used by the operation. This provides information about how the out-of-band operation is transmitted to the mobile device.
Declaration
Swift
var dispatchChannel: NMADispatchChannel { get }
-
The
NMAOutOfBandPayload
object that can be used with theNMAOutOfBandOperation
to continue with the operation.Declaration
Swift
var payload: NMAOutOfBandPayload { get }
-
Additional information that is not included in the
NMAOutOfBandPayload
. For instance, in this is an operation dispatched using the Firebase dispatcher, this contains the push notification information in JSON format, as provided as input of the dispatch request.Declaration
Swift
var additionalInformation: String? { get }