Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 951 Bytes

File metadata and controls

30 lines (21 loc) · 951 Bytes

RootResponse

Properties

Name Type Description Notes
service str [optional] [default to 'Knowledge Stack API']
docs str [optional] [default to '/api/docs']

Example

from ksapi.models.root_response import RootResponse

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

# convert the object into a dict
root_response_dict = root_response_instance.to_dict()
# create an instance of RootResponse from a dict
root_response_from_dict = RootResponse.from_dict(root_response_dict)

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