Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.24 KB

File metadata and controls

30 lines (21 loc) · 1.24 KB

CreateBatchAllocationRequest

Properties

Name Type Description Notes
request_id str The request ID that is used to track a batch allocation request. The request ID is provided by you and must be unique.
allocation_params List[AllocationParam]

Example

from cobo_waas2.models.create_batch_allocation_request import CreateBatchAllocationRequest

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

# convert the object into a dict
create_batch_allocation_request_dict = create_batch_allocation_request_instance.to_dict()
# create an instance of CreateBatchAllocationRequest from a dict
create_batch_allocation_request_from_dict = CreateBatchAllocationRequest.from_dict(create_batch_allocation_request_dict)

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