Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.15 KB

File metadata and controls

33 lines (24 loc) · 1.15 KB

CreateActionTypeRequest

Properties

Name Type Description Notes
service Service
title str Title
subtitle str [optional]
description str Description
alias str

Example

from onelens_backend_client.models.create_action_type_request import CreateActionTypeRequest

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

# convert the object into a dict
create_action_type_request_dict = create_action_type_request_instance.to_dict()
# create an instance of CreateActionTypeRequest from a dict
create_action_type_request_form_dict = create_action_type_request.from_dict(create_action_type_request_dict)

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