Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 946 Bytes

File metadata and controls

32 lines (24 loc) · 946 Bytes

Voice

Properties

Name Type Description Notes
sender str [optional]
text str
category str
voice str [optional]
lang str Language or locale, like "en" or "en_UK) [optional]

Example

from bsg_api.models.voice import Voice

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

# convert the object into a dict
voice_dict = voice_instance.to_dict()
# create an instance of Voice from a dict
voice_from_dict = Voice.from_dict(voice_dict)

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