Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.71 KB

File metadata and controls

33 lines (24 loc) · 1.71 KB

CreateBulkSendRequest

Properties

Name Type Description Notes
request_id str The request ID that is used to track a bulk send request. The request ID is provided by you and must be unique within your system. [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"`.
execution_mode PaymentBulkSendExecutionMode
description str The description for the entire bulk send batch. [optional]
payout_params List[CreateBulkSendRequestPayoutParamsInner] The bulk send items.

Example

from cobo_waas2.models.create_bulk_send_request import CreateBulkSendRequest

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

# convert the object into a dict
create_bulk_send_request_dict = create_bulk_send_request_instance.to_dict()
# create an instance of CreateBulkSendRequest from a dict
create_bulk_send_request_from_dict = CreateBulkSendRequest.from_dict(create_bulk_send_request_dict)

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