Name | Type | Description | Notes |
---|---|---|---|
key | str | [optional] |
from wordlift_client.models.response2 import Response2
# TODO update the JSON string below
json = "{}"
# create an instance of Response2 from a JSON string
response2_instance = Response2.from_json(json)
# print the JSON string representation of the object
print(Response2.to_json())
# convert the object into a dict
response2_dict = response2_instance.to_dict()
# create an instance of Response2 from a dict
response2_from_dict = Response2.from_dict(response2_dict)