| Name | Type | Description | Notes |
|---|---|---|---|
| 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. |
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)