Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.31 KB

RootPageResponse.md

File metadata and controls

33 lines (24 loc) · 1.31 KB

RootPageResponse

Status Page

Properties

Name Type Description Notes
name str Name of the service.
version str A semantic version with exactly a `major`, `minor` and `patch` specifier. No `pre-release` or `build` identifiers are allowed. See https://semver.org
enabled object Description of the features enabled on this service deployment.
revision str Revision of the service source code.

Example

from waylay.services.registry.models.root_page_response import RootPageResponse

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

# convert the object into a dict
root_page_response_dict = root_page_response_instance.to_dict()
# create an instance of RootPageResponse from a dict
root_page_response_form_dict = root_page_response.from_dict(root_page_response_dict)

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