Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.01 KB

ActionType.md

File metadata and controls

34 lines (25 loc) · 1.01 KB

ActionType

Properties

Name Type Description Notes
service Service
title str Title
subtitle str [optional]
description str Description
alias str
id int Action Type ID

Example

from onelens_backend_client.models.action_type import ActionType

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

# convert the object into a dict
action_type_dict = action_type_instance.to_dict()
# create an instance of ActionType from a dict
action_type_form_dict = action_type.from_dict(action_type_dict)

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