Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.56 KB

InlineResponse200313ResultData.md

File metadata and controls

31 lines (22 loc) · 1.56 KB

InlineResponse200313ResultData

The function only returns these values if the user or users do not have the order_item_id item in the cPanel Market pending queue.

Properties

Name Type Description Notes
error_type str The type of error that the function encountered. * `EntryDoesNotExist` — The returned `order_item_ids` do not exist in the cPanel Market pending queue for the user. [optional]
order_item_ids List[int] An array that lists order item IDs which do not exist in the cPanel Market pending queue for the user. [optional]

Example

from clientapi_cpanel.models.inline_response200313_result_data import InlineResponse200313ResultData

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

# convert the object into a dict
inline_response200313_result_data_dict = inline_response200313_result_data_instance.to_dict()
# create an instance of InlineResponse200313ResultData from a dict
inline_response200313_result_data_from_dict = InlineResponse200313ResultData.from_dict(inline_response200313_result_data_dict)

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