Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.35 KB

File metadata and controls

35 lines (26 loc) · 1.35 KB

AddOrderResponse

Properties

Name Type Description Notes
result str [optional]
message str Response message [optional]
orderid str The ID of the newly created order [optional]
productids List[str] Array of product IDs that were created [optional]
addonids List[str] Array of addon IDs that were created [optional]
domainids List[str] Array of domain IDs that were created [optional]
invoiceid str The invoice ID if an invoice was generated [optional]

Example

from whmcs_client.models.add_order_response import AddOrderResponse

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

# convert the object into a dict
add_order_response_dict = add_order_response_instance.to_dict()
# create an instance of AddOrderResponse from a dict
add_order_response_from_dict = AddOrderResponse.from_dict(add_order_response_dict)

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