Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.01 KB

File metadata and controls

33 lines (24 loc) · 1.01 KB

PlatformError

Standard error structure returned by platform.

Properties

Name Type Description Notes
code int [optional]
call str [optional]
url str [optional]
details object [optional]

Example

from freeclimb.models.platform_error import PlatformError

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

# convert the object into a dict
platform_error_dict = platform_error_instance.to_dict()
# create an instance of PlatformError from a dict
platform_error_from_dict = PlatformError.from_dict(platform_error_dict)

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