APIResponseWithCode

Properties

Name

Type

Description

Notes

code

int

[optional]

message

str

[optional]

Example

from gs_interactive.models.api_response_with_code import APIResponseWithCode

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

# convert the object into a dict
api_response_with_code_dict = api_response_with_code_instance.to_dict()
# create an instance of APIResponseWithCode from a dict
api_response_with_code_from_dict = APIResponseWithCode.from_dict(api_response_with_code_dict)

[Back to Model list] [Back to API list] [Back to python_sdk]