PendingOutOfBandOperation
public struct PendingOutOfBandOperation : Codable, Equatable
extension PendingOutOfBandOperation: Comparable
The object defining a non-redeemed out-of-band operation as defined in the in the Get Device Out-of-Band Operations service.
See
SeeOutOfBandOperation
See
SeePendingOutOfBandOperations
-
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
public let creationTimeInEpochMillis: Int
-
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
public let dispatchChannel: DispatchChannel
-
The
OutOfBandPayload
object that can be used with theOutOfBandOperation
to continue with the operation.Declaration
Swift
public let payload: OutOfBandPayload
-
Additional information that is not included in the
OutOfBandPayload
. For instance, if 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
public let additionalInformation: String?
-
Declaration
Swift
public static func < (lhs: PendingOutOfBandOperation, rhs: PendingOutOfBandOperation) -> Bool