Status Page
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. |
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)