Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.35 KB

File metadata and controls

33 lines (24 loc) · 1.35 KB

V2ItemsDiscontinuePost503ResponseError

Properties

Name Type Description Notes
type str [optional]
message str [optional]
timestamp datetime [optional]
url str [optional]
status_code int [optional]

Example

from t3api.models.v2_items_discontinue_post503_response_error import V2ItemsDiscontinuePost503ResponseError

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

# convert the object into a dict
v2_items_discontinue_post503_response_error_dict = v2_items_discontinue_post503_response_error_instance.to_dict()
# create an instance of V2ItemsDiscontinuePost503ResponseError from a dict
v2_items_discontinue_post503_response_error_from_dict = V2ItemsDiscontinuePost503ResponseError.from_dict(v2_items_discontinue_post503_response_error_dict)

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