Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.02 KB

File metadata and controls

30 lines (21 loc) · 1.02 KB

Version

Properties

Name Type Description Notes
major str Major version changes indicate different required support level from the required components. [optional]
minor str Minor version changes must not change the observed behavior from existing implementations, but may be provided informationally. [optional]

Example

from permify.models.version import Version

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

# convert the object into a dict
version_dict = version_instance.to_dict()
# create an instance of Version from a dict
version_form_dict = version.from_dict(version_dict)

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