Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1018 Bytes

CollectionCreation.md

File metadata and controls

30 lines (21 loc) · 1018 Bytes

CollectionCreation

Properties

Name Type Description Notes
title str The title of the collection
privacy CollectionPrivacy

Example

from flat_api.models.collection_creation import CollectionCreation

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

# convert the object into a dict
collection_creation_dict = collection_creation_instance.to_dict()
# create an instance of CollectionCreation from a dict
collection_creation_form_dict = collection_creation.from_dict(collection_creation_dict)

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