Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 905 Bytes

InspectResponse.md

File metadata and controls

29 lines (20 loc) · 905 Bytes

InspectResponse

Properties

Name Type Description Notes
empty bool [optional]

Example

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]