V2VersionReply

March 26, 2025 ยท View on GitHub

Properties

NameTypeDescriptionNotes
versionstr[optional]
major_verint[optional]
minor_verint[optional]
patch_verint[optional]

Example

from ncbi.datasets.openapi.models.v2_version_reply import V2VersionReply

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

# convert the object into a dict
v2_version_reply_dict = v2_version_reply_instance.to_dict()
# create an instance of V2VersionReply from a dict
v2_version_reply_from_dict = V2VersionReply.from_dict(v2_version_reply_dict)

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