Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 811 Bytes

File metadata and controls

30 lines (21 loc) · 811 Bytes

V1Error

Properties

Name Type Description Notes
error bool
message str

Example

from quantcdn.models.v1_error import V1Error

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

# convert the object into a dict
v1_error_dict = v1_error_instance.to_dict()
# create an instance of V1Error from a dict
v1_error_from_dict = V1Error.from_dict(v1_error_dict)

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