Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 822 Bytes

File metadata and controls

29 lines (20 loc) · 822 Bytes

Action

Properties

Name Type Description Notes
type DocumentAction [optional]

Example

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)

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