Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.49 KB

SUBMITTER.md

File metadata and controls

28 lines (21 loc) · 1.49 KB

SUBMITTER

Properties

Name Type Description Notes
automation_widgets List[IdReference] If no automation widgets are assigned in request the default automation widgets will be assigned instead [optional]
project_view_created_by_other_submitters bool View projects created by other Submitters. Default: false [optional]

Example

from phrasetms_client.models.submitter import SUBMITTER

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

# convert the object into a dict
submitter_dict = submitter_instance.to_dict()
# create an instance of SUBMITTER from a dict
submitter_from_dict = SUBMITTER.from_dict(submitter_dict)

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