Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.39 KB

RestColServiceCreateCollectionBody.md

File metadata and controls

32 lines (23 loc) · 1.39 KB

RestColServiceCreateCollectionBody

Properties

Name Type Description Notes
collection_id str [optional]
description str [optional]
collection_type ApiCollectionType [optional] [default to ApiCollectionType.NONE]
schemas List[ApiSchemaField] [optional]

Example

from openapi_client.models.rest_col_service_create_collection_body import RestColServiceCreateCollectionBody

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

# convert the object into a dict
rest_col_service_create_collection_body_dict = rest_col_service_create_collection_body_instance.to_dict()
# create an instance of RestColServiceCreateCollectionBody from a dict
rest_col_service_create_collection_body_from_dict = RestColServiceCreateCollectionBody.from_dict(rest_col_service_create_collection_body_dict)

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