Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.22 KB

File metadata and controls

36 lines (27 loc) · 1.22 KB

AboutInfoVersion

API version details

Properties

Name Type Description Notes
full str Full version representation
release str Release main version representation
major int Major version number
minor int Minor version number
patch int Patch version number
label str Label version, may be empty
build str Build VCS id

Example

from cosmotech_api.models.about_info_version import AboutInfoVersion

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

# convert the object into a dict
about_info_version_dict = about_info_version_instance.to_dict()
# create an instance of AboutInfoVersion from a dict
about_info_version_from_dict = AboutInfoVersion.from_dict(about_info_version_dict)

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