Name |
Type |
Description |
Notes |
empty |
bool |
|
[optional] |
from wordlift_client.models.inspect_response import InspectResponse
# TODO update the JSON string below
json = "{}"
# create an instance of InspectResponse from a JSON string
inspect_response_instance = InspectResponse.from_json(json)
# print the JSON string representation of the object
print(InspectResponse.to_json())
# convert the object into a dict
inspect_response_dict = inspect_response_instance.to_dict()
# create an instance of InspectResponse from a dict
inspect_response_from_dict = InspectResponse.from_dict(inspect_response_dict)
[Back to Model list] [Back to API list] [Back to README]