Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.07 KB

File metadata and controls

29 lines (20 loc) · 1.07 KB

UpdateApplications404Response

Properties

Name Type Description Notes
message str [optional]

Example

from gateway_api_sdk.models.update_applications404_response import UpdateApplications404Response

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

# convert the object into a dict
update_applications404_response_dict = update_applications404_response_instance.to_dict()
# create an instance of UpdateApplications404Response from a dict
update_applications404_response_from_dict = UpdateApplications404Response.from_dict(update_applications404_response_dict)

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