Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.12 KB

File metadata and controls

31 lines (22 loc) · 1.12 KB

TextDispositionResponse

Text Disposition reference

Properties

Name Type Description Notes
text_disposition_id int unique identifier of the Text Disposition [optional]
name str name of the Text Disposition [optional]

Example

from valis.models.text_disposition_response import TextDispositionResponse

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

# convert the object into a dict
text_disposition_response_dict = text_disposition_response_instance.to_dict()
# create an instance of TextDispositionResponse from a dict
text_disposition_response_from_dict = TextDispositionResponse.from_dict(text_disposition_response_dict)

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