You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from cloudbeds_fiscal_document.models.action import Action
14
+
15
+
#TODO update the JSON string below
16
+
json ="{}"
17
+
# create an instance of Action from a JSON string
18
+
action_instance = Action.from_json(json)
19
+
# print the JSON string representation of the object
20
+
print(Action.to_json())
21
+
22
+
# convert the object into a dict
23
+
action_dict = action_instance.to_dict()
24
+
# create an instance of Action from a dict
25
+
action_from_dict = Action.from_dict(action_dict)
26
+
```
27
+
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
0 commit comments