Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.3 KB

File metadata and controls

33 lines (24 loc) · 1.3 KB

TextDispositionsResponse

list of text dispositions

Properties

Name Type Description Notes
success bool Is this a successful response? [optional]
failure_message str Details if this response failed [optional]
cache_key_name str CacheKey name [optional]
list_items List[TextDispositionResponse] list of text dispositions [optional]

Example

from valis.models.text_dispositions_response import TextDispositionsResponse

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

# convert the object into a dict
text_dispositions_response_dict = text_dispositions_response_instance.to_dict()
# create an instance of TextDispositionsResponse from a dict
text_dispositions_response_from_dict = TextDispositionsResponse.from_dict(text_dispositions_response_dict)

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