Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.28 KB

File metadata and controls

31 lines (22 loc) · 1.28 KB

GetOpenApiSchema200ResponseComponents

Properties

Name Type Description Notes
schemas object [optional]
parameters object [optional]
responses object [optional]

Example

from twentycrm_client.models.get_open_api_schema200_response_components import GetOpenApiSchema200ResponseComponents

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

# convert the object into a dict
get_open_api_schema200_response_components_dict = get_open_api_schema200_response_components_instance.to_dict()
# create an instance of GetOpenApiSchema200ResponseComponents from a dict
get_open_api_schema200_response_components_from_dict = GetOpenApiSchema200ResponseComponents.from_dict(get_open_api_schema200_response_components_dict)

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