Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 954 Bytes

VoiceApiError.md

File metadata and controls

31 lines (22 loc) · 954 Bytes

VoiceApiError

Properties

Name Type Description Notes
type str [optional]
description str [optional]
id str [optional]

Example

from bandwidth.models.voice_api_error import VoiceApiError

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

# convert the object into a dict
voice_api_error_dict = voice_api_error_instance.to_dict()
# create an instance of VoiceApiError from a dict
voice_api_error_from_dict = VoiceApiError.from_dict(voice_api_error_dict)

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