Skip to content

Latest commit

 

History

History
41 lines (34 loc) · 2.02 KB

ContentstackAllOf.md

File metadata and controls

41 lines (34 loc) · 2.02 KB

ContentstackAllOf

Properties

Name Type Description Notes
auth_type str
region str [optional]
non_localizable_blocks_uids str [optional]
target_langs_field_id str [optional]
api_key str
source_lang str [optional]
translate_urls bool Default false [optional]
translate_tags bool Default false [optional]
management_token str [optional]
password str [optional]
user_name str [optional]
stack_wf_observed str [optional]
stack_wf_upon_import str [optional]
stack_wf_export_source str [optional]
stack_wf_export_translate str [optional]

Example

from phrasetms_client.models.contentstack_all_of import ContentstackAllOf

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

# convert the object into a dict
contentstack_all_of_dict = contentstack_all_of_instance.to_dict()
# create an instance of ContentstackAllOf from a dict
contentstack_all_of_from_dict = ContentstackAllOf.from_dict(contentstack_all_of_dict)

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