Skip to content

Latest commit

 

History

History
42 lines (26 loc) · 1.37 KB

File metadata and controls

42 lines (26 loc) · 1.37 KB

CallbackMessage

The information about a callback message.

Properties

Name Type Description Notes
id UUID The callback message ID.
createdTimestamp Long The time when the callback message was created, in Unix timestamp format, measured in milliseconds.
updatedTimestamp Long The time when the callback message was updated, in Unix timestamp format, measured in milliseconds.
requestId String The request ID of the transaction.
transactionId String The transaction ID.
walletId String The wallet ID. [optional]
url String The callback endpoint URL.
data Transaction
status StatusEnum The callback message status. Possible values include `Denied`, `Approved`, and `Failed`.
result ResultEnum The callback message result. Possible values include `ok` and `deny`. [optional]

Enum: StatusEnum

Name Value
DENIED "Denied"
APPROVED "Approved"
FAILED "Failed"

Enum: ResultEnum

Name Value
OK "ok"
DENY "deny"