Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.2 KB

CreateActionTypeResponse.md

File metadata and controls

34 lines (25 loc) · 1.2 KB

CreateActionTypeResponse

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.create_action_type_response import CreateActionTypeResponse

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

# convert the object into a dict
create_action_type_response_dict = create_action_type_response_instance.to_dict()
# create an instance of CreateActionTypeResponse from a dict
create_action_type_response_form_dict = create_action_type_response.from_dict(create_action_type_response_dict)

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