You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The unique identifier of the action type template.
Example
fromonelens_backend_client.models.sync_action_type_from_repo_requestimportSyncActionTypeFromRepoRequest# TODO update the JSON string belowjson="{}"# create an instance of SyncActionTypeFromRepoRequest from a JSON stringsync_action_type_from_repo_request_instance=SyncActionTypeFromRepoRequest.from_json(json)
# print the JSON string representation of the objectprint(SyncActionTypeFromRepoRequest.to_json())
# convert the object into a dictsync_action_type_from_repo_request_dict=sync_action_type_from_repo_request_instance.to_dict()
# create an instance of SyncActionTypeFromRepoRequest from a dictsync_action_type_from_repo_request_form_dict=sync_action_type_from_repo_request.from_dict(sync_action_type_from_repo_request_dict)