Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 2.79 KB

File metadata and controls

34 lines (25 loc) · 2.79 KB

BalanceUpdateInfoEventData

Properties

Name Type Description Notes
data_type str The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data.
token_id str The token ID, which is the unique identifier of a token. You can retrieve the IDs of all the tokens you can use by calling List enabled tokens.
address str The wallet address.
wallet_uuid str The wallet ID.
updated_timestamp int The time when the balance updated, in Unix timestamp format, measured in milliseconds.
balance Balance

Example

from cobo_waas2.models.balance_update_info_event_data import BalanceUpdateInfoEventData

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

# convert the object into a dict
balance_update_info_event_data_dict = balance_update_info_event_data_instance.to_dict()
# create an instance of BalanceUpdateInfoEventData from a dict
balance_update_info_event_data_from_dict = BalanceUpdateInfoEventData.from_dict(balance_update_info_event_data_dict)

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