Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.12 KB

Model4XXResponseErrorsInner.md

File metadata and controls

31 lines (22 loc) · 1.12 KB

Model4XXResponseErrorsInner

Properties

Name Type Description Notes
code str [optional]
detail str [optional]
attr object [optional]

Example

from callchimp.models.model4_xx_response_errors_inner import Model4XXResponseErrorsInner

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

# convert the object into a dict
model4_xx_response_errors_inner_dict = model4_xx_response_errors_inner_instance.to_dict()
# create an instance of Model4XXResponseErrorsInner from a dict
model4_xx_response_errors_inner_from_dict = Model4XXResponseErrorsInner.from_dict(model4_xx_response_errors_inner_dict)

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