| Name | Type | Description | Notes |
|---|---|---|---|
| type | DocumentAction | [optional] |
from cloudbeds_fiscal_document.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)