You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
custom_payer_id
str
A unique identifier assigned by the developer to track and identify individual payers in their system.
payer_id
str
A unique identifier assigned by Cobo to track and identify individual payers.
chain
str
The chain ID.
previous_address
str
The previous top-up address that was assigned to the payer.
updated_address
str
The new top-up address that has been assigned to the payer.
Example
fromcobo_waas2.models.payment_address_update_event_dataimportPaymentAddressUpdateEventData# TODO update the JSON string belowjson="{}"# create an instance of PaymentAddressUpdateEventData from a JSON stringpayment_address_update_event_data_instance=PaymentAddressUpdateEventData.from_json(json)
# print the JSON string representation of the objectprint(PaymentAddressUpdateEventData.to_json())
# convert the object into a dictpayment_address_update_event_data_dict=payment_address_update_event_data_instance.to_dict()
# create an instance of PaymentAddressUpdateEventData from a dictpayment_address_update_event_data_from_dict=PaymentAddressUpdateEventData.from_dict(payment_address_update_event_data_dict)