Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 963 Bytes

VoiceCodeResponse.md

File metadata and controls

29 lines (20 loc) · 963 Bytes

VoiceCodeResponse

Properties

Name Type Description Notes
call_id str Programmable Voice API Call ID. [optional]

Example

from bandwidth.models.voice_code_response import VoiceCodeResponse

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

# convert the object into a dict
voice_code_response_dict = voice_code_response_instance.to_dict()
# create an instance of VoiceCodeResponse from a dict
voice_code_response_from_dict = VoiceCodeResponse.from_dict(voice_code_response_dict)

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