Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.83 KB

File metadata and controls

39 lines (30 loc) · 1.83 KB

CreateCollectionsRequest

Properties

Name Type Description Notes
name str [optional]
description str [optional]
image_link str [optional]
enabled bool [optional]
keywords List[str] [optional]
datasets List[CreateCollectionsIntegrationsRequestDatasetsInner] [optional]
tools List[CreateCollectionsIntegrationsRequestDatasetsInner] [optional]
dur List[CreateCollectionsIntegrationsRequestDatasetsInner] [optional]
publications List[CreateCollectionsIntegrationsRequestDatasetsInner] [optional]
collaborators List[int] [optional]
public bool [optional]

Example

from gateway_api_sdk.models.create_collections_request import CreateCollectionsRequest

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

# convert the object into a dict
create_collections_request_dict = create_collections_request_instance.to_dict()
# create an instance of CreateCollectionsRequest from a dict
create_collections_request_from_dict = CreateCollectionsRequest.from_dict(create_collections_request_dict)

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