Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 795 Bytes

Values.md

File metadata and controls

29 lines (20 loc) · 795 Bytes

Values

Properties

Name Type Description Notes
values Dict[str, Any] [optional]

Example

from permify.models.values import Values

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

# convert the object into a dict
values_dict = values_instance.to_dict()
# create an instance of Values from a dict
values_from_dict = Values.from_dict(values_dict)

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