Class: Telnyx::Models::TextToSpeechListVoicesResponse::Voice
Instance Attribute Summary collapse
Instance Method Summary
collapse
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(id: nil, accent: nil, age: nil, gender: nil, label: nil, language: nil, name: nil, provider: nil) ⇒ Object
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# File 'lib/telnyx/models/text_to_speech_list_voices_response.rb', line 16
class Voice < Telnyx::Internal::Type::BaseModel
optional :id, String
optional :accent, String
optional :age, String
optional :gender, String
optional :label, String
optional :language, String
optional :name, String
optional :provider, String
end
|
Instance Attribute Details
#accent ⇒ String?
25
|
# File 'lib/telnyx/models/text_to_speech_list_voices_response.rb', line 25
optional :accent, String
|
#age ⇒ String?
30
|
# File 'lib/telnyx/models/text_to_speech_list_voices_response.rb', line 30
optional :age, String
|
#gender ⇒ String?
35
|
# File 'lib/telnyx/models/text_to_speech_list_voices_response.rb', line 35
optional :gender, String
|
#id ⇒ String?
20
|
# File 'lib/telnyx/models/text_to_speech_list_voices_response.rb', line 20
optional :id, String
|
#label ⇒ String?
40
|
# File 'lib/telnyx/models/text_to_speech_list_voices_response.rb', line 40
optional :label, String
|
#language ⇒ String?
45
|
# File 'lib/telnyx/models/text_to_speech_list_voices_response.rb', line 45
optional :language, String
|
#name ⇒ String?
50
|
# File 'lib/telnyx/models/text_to_speech_list_voices_response.rb', line 50
optional :name, String
|
#provider ⇒ String?
55
|
# File 'lib/telnyx/models/text_to_speech_list_voices_response.rb', line 55
optional :provider, String
|