Skip to content
This repository was archived by the owner on Dec 1, 2025. It is now read-only.

Latest commit

 

History

History
31 lines (23 loc) · 1.43 KB

File metadata and controls

31 lines (23 loc) · 1.43 KB

TransactionRequestApprovalData

Specifies all data, as attributes, included into the callback notification, which depends on the event.

Properties

Name Type Description Notes
product str Represents the Crypto APIs 2.0 product which sends the callback.
event str Defines the specific event, for which a callback subscription is set.
item TransactionRequestApprovalDataItem

Example

from cryptoapis.models.transaction_request_approval_data import TransactionRequestApprovalData

# TODO update the JSON string below
json = "{}"
# create an instance of TransactionRequestApprovalData from a JSON string
transaction_request_approval_data_instance = TransactionRequestApprovalData.from_json(json)
# print the JSON string representation of the object
print TransactionRequestApprovalData.to_json()

# convert the object into a dict
transaction_request_approval_data_dict = transaction_request_approval_data_instance.to_dict()
# create an instance of TransactionRequestApprovalData from a dict
transaction_request_approval_data_form_dict = transaction_request_approval_data.from_dict(transaction_request_approval_data_dict)

[Back to Model list] [Back to API list] [Back to README]