| 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] |
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)