| Name | Type | Description | Notes |
|---|---|---|---|
| type | str | Type of Action | [optional] |
| parameters | Dict[str, str] | Parameters required for the action, can be any object. | [optional] |
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)