Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 3.63 KB

File metadata and controls

39 lines (30 loc) · 3.63 KB

PaymentBulkSendEvent

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.
bulk_send_id str The bulk send ID.
request_id str The request ID. [optional]
source_account str The source account from which the bulk send will be made. - If the source account is a merchant account, provide the merchant's ID (e.g., "M1001"). - If the source account is the developer account, use the string `"developer"`.
description str The description for the entire bulk send batch. [optional]
execution_mode PaymentBulkSendExecutionMode
status PaymentBulkSendStatus
failed_reason str The reason why the bulk send failed. [optional]
created_timestamp int The created time of the bulk send, represented as a UNIX timestamp in seconds.
updated_timestamp int The updated time of the bulk send, represented as a UNIX timestamp in seconds.
commission_fee CommissionFee The commission fee. Not returned when no fee has been incurred, the actual charged amount once incurred, or `0` if refunded. [optional]

Example

from cobo_waas2.models.payment_bulk_send_event import PaymentBulkSendEvent

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

# convert the object into a dict
payment_bulk_send_event_dict = payment_bulk_send_event_instance.to_dict()
# create an instance of PaymentBulkSendEvent from a dict
payment_bulk_send_event_from_dict = PaymentBulkSendEvent.from_dict(payment_bulk_send_event_dict)

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