Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 2.85 KB

File metadata and controls

35 lines (26 loc) · 2.85 KB

MPCVaultEventData

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. - `PaymentAccountBalanceUpdate`: The Payments account balance updated event data, including account information and balance change details. - `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. - `Organization`: The organization event data. - `FiatTransaction`: The fiat transaction event data.
vault_id str The vault ID. [optional]
project_id str The project ID. [optional]
name str The vault name. [optional]
type MPCVaultType [optional]
root_pubkeys List[RootPubkey] [optional]
created_timestamp int The vault's creation time in Unix timestamp format, measured in milliseconds. [optional]

Example

from cobo_waas2.models.mpc_vault_event_data import MPCVaultEventData

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

# convert the object into a dict
mpc_vault_event_data_dict = mpc_vault_event_data_instance.to_dict()
# create an instance of MPCVaultEventData from a dict
mpc_vault_event_data_from_dict = MPCVaultEventData.from_dict(mpc_vault_event_data_dict)

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