Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1016 Bytes

File metadata and controls

29 lines (20 loc) · 1016 Bytes

CreateWidget400Response

Properties

Name Type Description Notes
message str [optional]

Example

from gateway_api_sdk.models.create_widget400_response import CreateWidget400Response

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

# convert the object into a dict
create_widget400_response_dict = create_widget400_response_instance.to_dict()
# create an instance of CreateWidget400Response from a dict
create_widget400_response_from_dict = CreateWidget400Response.from_dict(create_widget400_response_dict)

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