Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

Latest commit

 

History

History
48 lines (40 loc) · 1.86 KB

File metadata and controls

48 lines (40 loc) · 1.86 KB

CreatePortalItemRequest

Properties

Name Type Description Notes
name str [optional]
logo_id str [optional]
url str [optional]
custom_id str [optional]
is_active bool [optional]
is_default bool [optional]
portal_roles_ids List[str] [optional]
tab_list List[str] [optional]
quick_create_list List[str] [optional]
company_logo_id str [optional]
theme str [optional]
locale_id str [optional]
language str [optional]
date_format str [optional]
time_format str [optional]
week_start int [optional]
default_currency str [optional]
dashboard_layout object [optional]
dashlets_options object [optional]
custom_url str [optional]
modified_by_id str [optional]

Example

from clientapi_atrocore.models.create_portal_item_request import CreatePortalItemRequest

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

# convert the object into a dict
create_portal_item_request_dict = create_portal_item_request_instance.to_dict()
# create an instance of CreatePortalItemRequest from a dict
create_portal_item_request_form_dict = create_portal_item_request.from_dict(create_portal_item_request_dict)

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