PendingTransaction
public struct PendingTransaction
The structure representing a pending transaction.
-
The unique identifer of the transaction.
Declaration
Swift
public var transactionId: String
-
The policy endpoint to the challenge mechanism.
Declaration
Swift
public var policyEndpointUrl: String
-
The transaction creation date.
Declaration
Swift
public var createdDate: Date
-
The associated message with the transaction. Default is
You have a pending request
.Declaration
Swift
public var message: String?
-
The type of transaction. Default is
request
.Declaration
Swift
public var type: String = "request"
-
Shorten unique transaction reference.
Remark
ThetransactionId
is represented as a Universal Unique Identifier (UUID); this field returns the characters to the first dash. Example ab88741b.Declaration
Swift
public var transactionIdShort: String
-
The location of a reference image url.
Remark
A fully qualified location of the image. Default isnil
Declaration
Swift
public var imageUrl: String?