| Name |
Type |
Description |
Notes |
| name |
str |
|
|
| name_de_de |
str |
|
|
| description |
str |
|
[optional] |
| description_de_de |
str |
|
[optional] |
| is_active |
bool |
|
[optional] |
| locales |
str |
|
[optional] |
| modified_by_id |
str |
|
[optional] |
| code |
str |
|
[optional] |
| type |
str |
|
[optional] |
from clientapi_atrocore.models.create_channel_item_request import CreateChannelItemRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CreateChannelItemRequest from a JSON string
create_channel_item_request_instance = CreateChannelItemRequest.from_json(json)
# print the JSON string representation of the object
print CreateChannelItemRequest.to_json()
# convert the object into a dict
create_channel_item_request_dict = create_channel_item_request_instance.to_dict()
# create an instance of CreateChannelItemRequest from a dict
create_channel_item_request_form_dict = create_channel_item_request.from_dict(create_channel_item_request_dict)
[Back to Model list] [Back to API list] [Back to README]