Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.18 KB

File metadata and controls

30 lines (21 loc) · 1.18 KB

CreateOrderAsyncResponse

Properties

Name Type Description Notes
job_id str The ID of an asynchronous job that will be returned for tracking the status and result of the job. [optional]
success bool Indicates whether the operation call succeeded. [optional]

Example

from zuora_sdk.models.create_order_async_response import CreateOrderAsyncResponse

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

# convert the object into a dict
create_order_async_response_dict = create_order_async_response_instance.to_dict()
# create an instance of CreateOrderAsyncResponse from a dict
create_order_async_response_from_dict = CreateOrderAsyncResponse.from_dict(create_order_async_response_dict)

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