| Name |
Type |
Description |
Notes |
| id |
str |
|
[optional] |
| deleted |
bool |
|
[optional] |
| name |
str |
|
|
| description |
str |
|
[optional] |
| email_address |
str |
|
[optional] |
| phone_number |
str |
|
[optional] |
| created_at |
str |
|
[optional] |
| modified_at |
str |
|
[optional] |
| created_by_id |
str |
|
[optional] |
| created_by_name |
str |
|
[optional] |
| modified_by_id |
str |
|
[optional] |
| modified_by_name |
str |
|
[optional] |
| assigned_user_id |
str |
|
[optional] |
| assigned_user_name |
str |
|
[optional] |
| teams_ids |
List[str] |
|
[optional] |
| teams_names |
object |
|
[optional] |
| channel_id |
str |
|
[optional] |
| channel_name |
str |
|
[optional] |
| assigned_import_feeds_ids |
List[str] |
|
[optional] |
| assigned_import_feeds_names |
object |
|
[optional] |
| assigned_export_feeds_ids |
List[str] |
|
[optional] |
| assigned_export_feeds_names |
object |
|
[optional] |
from clientapi_atrocore.models.account import Account
# TODO update the JSON string below
json = "{}"
# create an instance of Account from a JSON string
account_instance = Account.from_json(json)
# print the JSON string representation of the object
print Account.to_json()
# convert the object into a dict
account_dict = account_instance.to_dict()
# create an instance of Account from a dict
account_form_dict = account.from_dict(account_dict)
[Back to Model list] [Back to API list] [Back to README]