Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.05 KB

CollectionApp.md

File metadata and controls

32 lines (23 loc) · 1.05 KB

CollectionApp

For App collections, the details of the app that created the collection

Properties

Name Type Description Notes
id str The app unique identifier [optional]
name str The name of the app [optional]
logo str The app logo url [optional]

Example

from flat_api.models.collection_app import CollectionApp

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

# convert the object into a dict
collection_app_dict = collection_app_instance.to_dict()
# create an instance of CollectionApp from a dict
collection_app_form_dict = collection_app.from_dict(collection_app_dict)

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