Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

VersionResponse

Properties

NameTypeDescriptionNotes
servicestrStable service identifier.
service_versionstrRunning service build version from crate metadata.
openapi_versionstrBundled OpenAPI document version from info.version.

Example

from ce_rise_hex_core_sdk.models.version_response import VersionResponse

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

# convert the object into a dict
version_response_dict = version_response_instance.to_dict()
# create an instance of VersionResponse from a dict
version_response_from_dict = VersionResponse.from_dict(version_response_dict)

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