Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.1 KB

File metadata and controls

30 lines (21 loc) · 1.1 KB

GetActionTypeResponse

Properties

Name Type Description Notes
action_types List[ActionType] Action Types
pagination PaginationFields Pagination fields

Example

from onelens_backend_client.models.get_action_type_response import GetActionTypeResponse

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

# convert the object into a dict
get_action_type_response_dict = get_action_type_response_instance.to_dict()
# create an instance of GetActionTypeResponse from a dict
get_action_type_response_form_dict = get_action_type_response.from_dict(get_action_type_response_dict)

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