Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.19 KB

File metadata and controls

34 lines (25 loc) · 1.19 KB

UpdateActionTypeRequest

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.update_action_type_request import UpdateActionTypeRequest

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

# convert the object into a dict
update_action_type_request_dict = update_action_type_request_instance.to_dict()
# create an instance of UpdateActionTypeRequest from a dict
update_action_type_request_form_dict = update_action_type_request.from_dict(update_action_type_request_dict)

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