| Name | Type | Description | Notes |
|---|---|---|---|
| error | V2ItemsDiscontinuePost500ResponseError | [optional] |
from t3api.models.v2_items_discontinue_post500_response import V2ItemsDiscontinuePost500Response
# TODO update the JSON string below
json = "{}"
# create an instance of V2ItemsDiscontinuePost500Response from a JSON string
v2_items_discontinue_post500_response_instance = V2ItemsDiscontinuePost500Response.from_json(json)
# print the JSON string representation of the object
print(V2ItemsDiscontinuePost500Response.to_json())
# convert the object into a dict
v2_items_discontinue_post500_response_dict = v2_items_discontinue_post500_response_instance.to_dict()
# create an instance of V2ItemsDiscontinuePost500Response from a dict
v2_items_discontinue_post500_response_from_dict = V2ItemsDiscontinuePost500Response.from_dict(v2_items_discontinue_post500_response_dict)