Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.02 KB

File metadata and controls

32 lines (23 loc) · 1.02 KB

ReadinessResponse

Properties

Name Type Description Notes
status str
timestamp datetime
services Dict[str, str]
errors Dict[str, str] [optional]

Example

from wordlift_client.models.readiness_response import ReadinessResponse

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

# convert the object into a dict
readiness_response_dict = readiness_response_instance.to_dict()
# create an instance of ReadinessResponse from a dict
readiness_response_from_dict = ReadinessResponse.from_dict(readiness_response_dict)

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