| Name |
Type |
Description |
Notes |
| id |
int |
The internal ID of this entity. |
|
| created |
datetime |
The time this entity was created. |
|
| account_id |
int |
The ID of the account that owns this entity. |
|
| modified |
datetime |
The time this entity was last modified. |
|
| description |
str |
A short description of the purpose of this collection. |
[optional] |
| subscribed_applications_ids |
List[int] |
A list of the IDs of the Applications where this collection is enabled. |
[optional] |
| name |
str |
The name of this collection. |
|
| modified_by |
int |
ID of the user who last updated this effect if available. |
[optional] |
| created_by |
int |
ID of the user who created this effect. |
|
| application_id |
int |
The ID of the Application that owns this entity. |
[optional] |
| campaign_id |
int |
The ID of the campaign that owns this entity. |
[optional] |
from talon_one.models.collection_without_payload import CollectionWithoutPayload
# TODO update the JSON string below
json = "{}"
# create an instance of CollectionWithoutPayload from a JSON string
collection_without_payload_instance = CollectionWithoutPayload.from_json(json)
# print the JSON string representation of the object
print(CollectionWithoutPayload.to_json())
# convert the object into a dict
collection_without_payload_dict = collection_without_payload_instance.to_dict()
# create an instance of CollectionWithoutPayload from a dict
collection_without_payload_from_dict = CollectionWithoutPayload.from_dict(collection_without_payload_dict)
[Back to Model list] [Back to API list] [Back to README]