Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.07 KB

RegistryErrorResponse.md

File metadata and controls

32 lines (23 loc) · 1.07 KB

RegistryErrorResponse

Properties

Name Type Description Notes
error str
code str
status_code float
data Dict[str, str] [optional]

Example

from waylay.services.registry.models.registry_error_response import RegistryErrorResponse

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

# convert the object into a dict
registry_error_response_dict = registry_error_response_instance.to_dict()
# create an instance of RegistryErrorResponse from a dict
registry_error_response_form_dict = registry_error_response.from_dict(registry_error_response_dict)

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