Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.35 KB

File metadata and controls

34 lines (25 loc) · 1.35 KB

BatchConfirmResponse

Response from batch confirmation.

Properties

Name Type Description Notes
task_id str Task ID for tracking batch confirmation progress
status TaskStatusEnum Task status
confirmations_count int Number of confirmations being processed
task TaskResponse Full task details
message str Status message [optional] [default to 'Batch confirmation is being processed in the background.']

Example

from mixpeek.models.batch_confirm_response import BatchConfirmResponse

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

# convert the object into a dict
batch_confirm_response_dict = batch_confirm_response_instance.to_dict()
# create an instance of BatchConfirmResponse from a dict
batch_confirm_response_from_dict = BatchConfirmResponse.from_dict(batch_confirm_response_dict)

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