Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.43 KB

File metadata and controls

33 lines (24 loc) · 1.43 KB

GetOpenApiSchema200ResponseInfo

Properties

Name Type Description Notes
title str [optional]
description str [optional]
terms_of_service str [optional]
contact GetOpenApiSchema200ResponseInfoContact [optional]
license GetOpenApiSchema200ResponseInfoLicense [optional]

Example

from twentycrm_client.models.get_open_api_schema200_response_info import GetOpenApiSchema200ResponseInfo

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

# convert the object into a dict
get_open_api_schema200_response_info_dict = get_open_api_schema200_response_info_instance.to_dict()
# create an instance of GetOpenApiSchema200ResponseInfo from a dict
get_open_api_schema200_response_info_from_dict = GetOpenApiSchema200ResponseInfo.from_dict(get_open_api_schema200_response_info_dict)

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