Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.47 KB

File metadata and controls

34 lines (25 loc) · 1.47 KB

GetOpenApiSchema200Response

Properties

Name Type Description Notes
openapi str [optional]
info GetOpenApiSchema200ResponseInfo [optional]
servers List[GetOpenApiSchema200ResponseServersInner] [optional]
components GetOpenApiSchema200ResponseComponents [optional]
paths object [optional]
tags object [optional]

Example

from twentycrm_client.models.get_open_api_schema200_response import GetOpenApiSchema200Response

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

# convert the object into a dict
get_open_api_schema200_response_dict = get_open_api_schema200_response_instance.to_dict()
# create an instance of GetOpenApiSchema200Response from a dict
get_open_api_schema200_response_from_dict = GetOpenApiSchema200Response.from_dict(get_open_api_schema200_response_dict)

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