Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 907 Bytes

File metadata and controls

30 lines (21 loc) · 907 Bytes

Action

Properties

Name Type Description Notes
type str Type of Action [optional]
parameters Dict[str, str] Parameters required for the action, can be any object. [optional]

Example

from cloudbeds_accounting.models.action import Action

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

# convert the object into a dict
action_dict = action_instance.to_dict()
# create an instance of Action from a dict
action_from_dict = Action.from_dict(action_dict)

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