Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1018 Bytes

Model4XXResponse.md

File metadata and controls

30 lines (21 loc) · 1018 Bytes

Model4XXResponse

Properties

Name Type Description Notes
type str [optional]
errors List[Model4XXResponseErrorsInner] [optional]

Example

from callchimp.models.model4_xx_response import Model4XXResponse

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

# convert the object into a dict
model4_xx_response_dict = model4_xx_response_instance.to_dict()
# create an instance of Model4XXResponse from a dict
model4_xx_response_from_dict = Model4XXResponse.from_dict(model4_xx_response_dict)

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