telnyx 5.16.0 → 5.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/telnyx/models/ai/assistants/scheduled_event_create_params.rb +10 -1
- data/lib/telnyx/models/ai/assistants/scheduled_phone_call_event_response.rb +26 -1
- data/lib/telnyx/models/ai/assistants/scheduled_sms_event_response.rb +25 -1
- data/lib/telnyx/resources/ai/assistants/scheduled_events.rb +3 -1
- data/lib/telnyx/version.rb +1 -1
- data/rbi/telnyx/models/ai/assistants/scheduled_event_create_params.rbi +13 -0
- data/rbi/telnyx/models/ai/assistants/scheduled_phone_call_event_response.rbi +13 -0
- data/rbi/telnyx/models/ai/assistants/scheduled_sms_event_response.rbi +13 -0
- data/rbi/telnyx/resources/ai/assistants/scheduled_events.rbi +4 -0
- data/sig/telnyx/models/ai/assistants/scheduled_event_create_params.rbs +9 -0
- data/sig/telnyx/models/ai/assistants/scheduled_phone_call_event_response.rbs +9 -0
- data/sig/telnyx/models/ai/assistants/scheduled_sms_event_response.rbs +9 -0
- data/sig/telnyx/resources/ai/assistants/scheduled_events.rbs +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7e08a58904d144a2f079927643323f2fe4e2ee5abc8f4836f48d6976e0fbe3df
|
|
4
|
+
data.tar.gz: 2f3135e265df7138173574ccff077286dc1404a653a694639ade129ab7738777
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1f6d3600b39400e54c7f532e66ec2e927db860d71bf67b22f675696f98616173df3f946cf94717af4790414c6d1dac5d3d8b5829ce425874eedf9dc4b4b0789b
|
|
7
|
+
data.tar.gz: e720904a65cf920859810d24da6e3512a84fdf9b2b6dc631415c60c81e2b8b07d5710bd61b5f5dfd1347e517b753af86c0e89046adb8e2559734a0d2f1374af3
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 5.17.0 (2026-02-11)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v5.16.0...v5.17.0](https://github.com/team-telnyx/telnyx-ruby/compare/v5.16.0...v5.17.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* Add dynamic_variables field to scheduled event schemas ([63ec440](https://github.com/team-telnyx/telnyx-ruby/commit/63ec440947f4fc9d884fa09c43573eaf4b4ed6e1))
|
|
10
|
+
|
|
3
11
|
## 5.16.0 (2026-02-11)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v5.15.0...v5.16.0](https://github.com/team-telnyx/telnyx-ruby/compare/v5.15.0...v5.16.0)
|
data/README.md
CHANGED
|
@@ -40,13 +40,20 @@ module Telnyx
|
|
|
40
40
|
optional :conversation_metadata,
|
|
41
41
|
-> { Telnyx::Internal::Type::HashOf[union: Telnyx::AI::Assistants::ScheduledEventCreateParams::ConversationMetadata] }
|
|
42
42
|
|
|
43
|
+
# @!attribute dynamic_variables
|
|
44
|
+
# A map of dynamic variable names to values. These variables can be referenced in
|
|
45
|
+
# the assistant's instructions and messages using {{variable_name}} syntax.
|
|
46
|
+
#
|
|
47
|
+
# @return [Hash{Symbol=>String}, nil]
|
|
48
|
+
optional :dynamic_variables, Telnyx::Internal::Type::HashOf[String]
|
|
49
|
+
|
|
43
50
|
# @!attribute text
|
|
44
51
|
# Required for sms scheduled events. The text to be sent to the end user.
|
|
45
52
|
#
|
|
46
53
|
# @return [String, nil]
|
|
47
54
|
optional :text, String
|
|
48
55
|
|
|
49
|
-
# @!method initialize(scheduled_at_fixed_datetime:, telnyx_agent_target:, telnyx_conversation_channel:, telnyx_end_user_target:, conversation_metadata: nil, text: nil, request_options: {})
|
|
56
|
+
# @!method initialize(scheduled_at_fixed_datetime:, telnyx_agent_target:, telnyx_conversation_channel:, telnyx_end_user_target:, conversation_metadata: nil, dynamic_variables: nil, text: nil, request_options: {})
|
|
50
57
|
# Some parameter documentations has been truncated, see
|
|
51
58
|
# {Telnyx::Models::AI::Assistants::ScheduledEventCreateParams} for more details.
|
|
52
59
|
#
|
|
@@ -60,6 +67,8 @@ module Telnyx
|
|
|
60
67
|
#
|
|
61
68
|
# @param conversation_metadata [Hash{Symbol=>String, Integer, Boolean}] Metadata associated with the conversation. Telnyx provides several pieces of met
|
|
62
69
|
#
|
|
70
|
+
# @param dynamic_variables [Hash{Symbol=>String}] A map of dynamic variable names to values. These variables can be referenced in
|
|
71
|
+
#
|
|
63
72
|
# @param text [String] Required for sms scheduled events. The text to be sent to the end user.
|
|
64
73
|
#
|
|
65
74
|
# @param request_options [Telnyx::RequestOptions, Hash{Symbol=>Object}]
|
|
@@ -46,6 +46,13 @@ module Telnyx
|
|
|
46
46
|
# @return [Time, nil]
|
|
47
47
|
optional :created_at, Time
|
|
48
48
|
|
|
49
|
+
# @!attribute dynamic_variables
|
|
50
|
+
# A map of dynamic variable names to values. These variables can be referenced in
|
|
51
|
+
# the assistant's instructions and messages using {{variable_name}} syntax.
|
|
52
|
+
#
|
|
53
|
+
# @return [Hash{Symbol=>String}, nil]
|
|
54
|
+
optional :dynamic_variables, Telnyx::Internal::Type::HashOf[String]
|
|
55
|
+
|
|
49
56
|
# @!attribute errors
|
|
50
57
|
#
|
|
51
58
|
# @return [Array<String>, nil]
|
|
@@ -71,19 +78,37 @@ module Telnyx
|
|
|
71
78
|
# @return [Symbol, Telnyx::Models::AI::Assistants::EventStatus, nil]
|
|
72
79
|
optional :status, enum: -> { Telnyx::AI::Assistants::EventStatus }
|
|
73
80
|
|
|
74
|
-
# @!method initialize(assistant_id:, scheduled_at_fixed_datetime:, telnyx_agent_target:, telnyx_conversation_channel:, telnyx_end_user_target:, conversation_id: nil, conversation_metadata: nil, created_at: nil, errors: nil, retry_attempts: nil, retry_count: nil, scheduled_event_id: nil, status: nil)
|
|
81
|
+
# @!method initialize(assistant_id:, scheduled_at_fixed_datetime:, telnyx_agent_target:, telnyx_conversation_channel:, telnyx_end_user_target:, conversation_id: nil, conversation_metadata: nil, created_at: nil, dynamic_variables: nil, errors: nil, retry_attempts: nil, retry_count: nil, scheduled_event_id: nil, status: nil)
|
|
82
|
+
# Some parameter documentations has been truncated, see
|
|
83
|
+
# {Telnyx::Models::AI::Assistants::ScheduledPhoneCallEventResponse} for more
|
|
84
|
+
# details.
|
|
85
|
+
#
|
|
75
86
|
# @param assistant_id [String]
|
|
87
|
+
#
|
|
76
88
|
# @param scheduled_at_fixed_datetime [Time]
|
|
89
|
+
#
|
|
77
90
|
# @param telnyx_agent_target [String]
|
|
91
|
+
#
|
|
78
92
|
# @param telnyx_conversation_channel [Symbol, Telnyx::Models::AI::Assistants::ConversationChannelType]
|
|
93
|
+
#
|
|
79
94
|
# @param telnyx_end_user_target [String]
|
|
95
|
+
#
|
|
80
96
|
# @param conversation_id [String]
|
|
97
|
+
#
|
|
81
98
|
# @param conversation_metadata [Hash{Symbol=>String, Integer, Boolean}]
|
|
99
|
+
#
|
|
82
100
|
# @param created_at [Time]
|
|
101
|
+
#
|
|
102
|
+
# @param dynamic_variables [Hash{Symbol=>String}] A map of dynamic variable names to values. These variables can be referenced in
|
|
103
|
+
#
|
|
83
104
|
# @param errors [Array<String>]
|
|
105
|
+
#
|
|
84
106
|
# @param retry_attempts [Integer]
|
|
107
|
+
#
|
|
85
108
|
# @param retry_count [Integer]
|
|
109
|
+
#
|
|
86
110
|
# @param scheduled_event_id [String]
|
|
111
|
+
#
|
|
87
112
|
# @param status [Symbol, Telnyx::Models::AI::Assistants::EventStatus]
|
|
88
113
|
|
|
89
114
|
module ConversationMetadata
|
|
@@ -51,6 +51,13 @@ module Telnyx
|
|
|
51
51
|
# @return [Time, nil]
|
|
52
52
|
optional :created_at, Time
|
|
53
53
|
|
|
54
|
+
# @!attribute dynamic_variables
|
|
55
|
+
# A map of dynamic variable names to values. These variables can be referenced in
|
|
56
|
+
# the assistant's instructions and messages using {{variable_name}} syntax.
|
|
57
|
+
#
|
|
58
|
+
# @return [Hash{Symbol=>String}, nil]
|
|
59
|
+
optional :dynamic_variables, Telnyx::Internal::Type::HashOf[String]
|
|
60
|
+
|
|
54
61
|
# @!attribute errors
|
|
55
62
|
#
|
|
56
63
|
# @return [Array<String>, nil]
|
|
@@ -71,19 +78,36 @@ module Telnyx
|
|
|
71
78
|
# @return [Symbol, Telnyx::Models::AI::Assistants::EventStatus, nil]
|
|
72
79
|
optional :status, enum: -> { Telnyx::AI::Assistants::EventStatus }
|
|
73
80
|
|
|
74
|
-
# @!method initialize(assistant_id:, scheduled_at_fixed_datetime:, telnyx_agent_target:, telnyx_conversation_channel:, telnyx_end_user_target:, text:, conversation_id: nil, conversation_metadata: nil, created_at: nil, errors: nil, retry_count: nil, scheduled_event_id: nil, status: nil)
|
|
81
|
+
# @!method initialize(assistant_id:, scheduled_at_fixed_datetime:, telnyx_agent_target:, telnyx_conversation_channel:, telnyx_end_user_target:, text:, conversation_id: nil, conversation_metadata: nil, created_at: nil, dynamic_variables: nil, errors: nil, retry_count: nil, scheduled_event_id: nil, status: nil)
|
|
82
|
+
# Some parameter documentations has been truncated, see
|
|
83
|
+
# {Telnyx::Models::AI::Assistants::ScheduledSMSEventResponse} for more details.
|
|
84
|
+
#
|
|
75
85
|
# @param assistant_id [String]
|
|
86
|
+
#
|
|
76
87
|
# @param scheduled_at_fixed_datetime [Time]
|
|
88
|
+
#
|
|
77
89
|
# @param telnyx_agent_target [String]
|
|
90
|
+
#
|
|
78
91
|
# @param telnyx_conversation_channel [Symbol, Telnyx::Models::AI::Assistants::ConversationChannelType]
|
|
92
|
+
#
|
|
79
93
|
# @param telnyx_end_user_target [String]
|
|
94
|
+
#
|
|
80
95
|
# @param text [String]
|
|
96
|
+
#
|
|
81
97
|
# @param conversation_id [String]
|
|
98
|
+
#
|
|
82
99
|
# @param conversation_metadata [Hash{Symbol=>String, Integer, Boolean}]
|
|
100
|
+
#
|
|
83
101
|
# @param created_at [Time]
|
|
102
|
+
#
|
|
103
|
+
# @param dynamic_variables [Hash{Symbol=>String}] A map of dynamic variable names to values. These variables can be referenced in
|
|
104
|
+
#
|
|
84
105
|
# @param errors [Array<String>]
|
|
106
|
+
#
|
|
85
107
|
# @param retry_count [Integer]
|
|
108
|
+
#
|
|
86
109
|
# @param scheduled_event_id [String]
|
|
110
|
+
#
|
|
87
111
|
# @param status [Symbol, Telnyx::Models::AI::Assistants::EventStatus]
|
|
88
112
|
|
|
89
113
|
module ConversationMetadata
|
|
@@ -10,7 +10,7 @@ module Telnyx
|
|
|
10
10
|
#
|
|
11
11
|
# Create a scheduled event for an assistant
|
|
12
12
|
#
|
|
13
|
-
# @overload create(assistant_id, scheduled_at_fixed_datetime:, telnyx_agent_target:, telnyx_conversation_channel:, telnyx_end_user_target:, conversation_metadata: nil, text: nil, request_options: {})
|
|
13
|
+
# @overload create(assistant_id, scheduled_at_fixed_datetime:, telnyx_agent_target:, telnyx_conversation_channel:, telnyx_end_user_target:, conversation_metadata: nil, dynamic_variables: nil, text: nil, request_options: {})
|
|
14
14
|
#
|
|
15
15
|
# @param assistant_id [String]
|
|
16
16
|
#
|
|
@@ -24,6 +24,8 @@ module Telnyx
|
|
|
24
24
|
#
|
|
25
25
|
# @param conversation_metadata [Hash{Symbol=>String, Integer, Boolean}] Metadata associated with the conversation. Telnyx provides several pieces of met
|
|
26
26
|
#
|
|
27
|
+
# @param dynamic_variables [Hash{Symbol=>String}] A map of dynamic variable names to values. These variables can be referenced in
|
|
28
|
+
#
|
|
27
29
|
# @param text [String] Required for sms scheduled events. The text to be sent to the end user.
|
|
28
30
|
#
|
|
29
31
|
# @param request_options [Telnyx::RequestOptions, Hash{Symbol=>Object}, nil]
|
data/lib/telnyx/version.rb
CHANGED
|
@@ -58,6 +58,14 @@ module Telnyx
|
|
|
58
58
|
end
|
|
59
59
|
attr_writer :conversation_metadata
|
|
60
60
|
|
|
61
|
+
# A map of dynamic variable names to values. These variables can be referenced in
|
|
62
|
+
# the assistant's instructions and messages using {{variable_name}} syntax.
|
|
63
|
+
sig { returns(T.nilable(T::Hash[Symbol, String])) }
|
|
64
|
+
attr_reader :dynamic_variables
|
|
65
|
+
|
|
66
|
+
sig { params(dynamic_variables: T::Hash[Symbol, String]).void }
|
|
67
|
+
attr_writer :dynamic_variables
|
|
68
|
+
|
|
61
69
|
# Required for sms scheduled events. The text to be sent to the end user.
|
|
62
70
|
sig { returns(T.nilable(String)) }
|
|
63
71
|
attr_reader :text
|
|
@@ -77,6 +85,7 @@ module Telnyx
|
|
|
77
85
|
Symbol,
|
|
78
86
|
Telnyx::AI::Assistants::ScheduledEventCreateParams::ConversationMetadata::Variants
|
|
79
87
|
],
|
|
88
|
+
dynamic_variables: T::Hash[Symbol, String],
|
|
80
89
|
text: String,
|
|
81
90
|
request_options: Telnyx::RequestOptions::OrHash
|
|
82
91
|
).returns(T.attached_class)
|
|
@@ -92,6 +101,9 @@ module Telnyx
|
|
|
92
101
|
# Metadata associated with the conversation. Telnyx provides several pieces of
|
|
93
102
|
# metadata, but customers can also add their own.
|
|
94
103
|
conversation_metadata: nil,
|
|
104
|
+
# A map of dynamic variable names to values. These variables can be referenced in
|
|
105
|
+
# the assistant's instructions and messages using {{variable_name}} syntax.
|
|
106
|
+
dynamic_variables: nil,
|
|
95
107
|
# Required for sms scheduled events. The text to be sent to the end user.
|
|
96
108
|
text: nil,
|
|
97
109
|
request_options: {}
|
|
@@ -111,6 +123,7 @@ module Telnyx
|
|
|
111
123
|
Symbol,
|
|
112
124
|
Telnyx::AI::Assistants::ScheduledEventCreateParams::ConversationMetadata::Variants
|
|
113
125
|
],
|
|
126
|
+
dynamic_variables: T::Hash[Symbol, String],
|
|
114
127
|
text: String,
|
|
115
128
|
request_options: Telnyx::RequestOptions
|
|
116
129
|
}
|
|
@@ -67,6 +67,14 @@ module Telnyx
|
|
|
67
67
|
sig { params(created_at: Time).void }
|
|
68
68
|
attr_writer :created_at
|
|
69
69
|
|
|
70
|
+
# A map of dynamic variable names to values. These variables can be referenced in
|
|
71
|
+
# the assistant's instructions and messages using {{variable_name}} syntax.
|
|
72
|
+
sig { returns(T.nilable(T::Hash[Symbol, String])) }
|
|
73
|
+
attr_reader :dynamic_variables
|
|
74
|
+
|
|
75
|
+
sig { params(dynamic_variables: T::Hash[Symbol, String]).void }
|
|
76
|
+
attr_writer :dynamic_variables
|
|
77
|
+
|
|
70
78
|
sig { returns(T.nilable(T::Array[String])) }
|
|
71
79
|
attr_reader :errors
|
|
72
80
|
|
|
@@ -118,6 +126,7 @@ module Telnyx
|
|
|
118
126
|
Telnyx::AI::Assistants::ScheduledPhoneCallEventResponse::ConversationMetadata::Variants
|
|
119
127
|
],
|
|
120
128
|
created_at: Time,
|
|
129
|
+
dynamic_variables: T::Hash[Symbol, String],
|
|
121
130
|
errors: T::Array[String],
|
|
122
131
|
retry_attempts: Integer,
|
|
123
132
|
retry_count: Integer,
|
|
@@ -134,6 +143,9 @@ module Telnyx
|
|
|
134
143
|
conversation_id: nil,
|
|
135
144
|
conversation_metadata: nil,
|
|
136
145
|
created_at: nil,
|
|
146
|
+
# A map of dynamic variable names to values. These variables can be referenced in
|
|
147
|
+
# the assistant's instructions and messages using {{variable_name}} syntax.
|
|
148
|
+
dynamic_variables: nil,
|
|
137
149
|
errors: nil,
|
|
138
150
|
retry_attempts: nil,
|
|
139
151
|
retry_count: nil,
|
|
@@ -158,6 +170,7 @@ module Telnyx
|
|
|
158
170
|
Telnyx::AI::Assistants::ScheduledPhoneCallEventResponse::ConversationMetadata::Variants
|
|
159
171
|
],
|
|
160
172
|
created_at: Time,
|
|
173
|
+
dynamic_variables: T::Hash[Symbol, String],
|
|
161
174
|
errors: T::Array[String],
|
|
162
175
|
retry_attempts: Integer,
|
|
163
176
|
retry_count: Integer,
|
|
@@ -70,6 +70,14 @@ module Telnyx
|
|
|
70
70
|
sig { params(created_at: Time).void }
|
|
71
71
|
attr_writer :created_at
|
|
72
72
|
|
|
73
|
+
# A map of dynamic variable names to values. These variables can be referenced in
|
|
74
|
+
# the assistant's instructions and messages using {{variable_name}} syntax.
|
|
75
|
+
sig { returns(T.nilable(T::Hash[Symbol, String])) }
|
|
76
|
+
attr_reader :dynamic_variables
|
|
77
|
+
|
|
78
|
+
sig { params(dynamic_variables: T::Hash[Symbol, String]).void }
|
|
79
|
+
attr_writer :dynamic_variables
|
|
80
|
+
|
|
73
81
|
sig { returns(T.nilable(T::Array[String])) }
|
|
74
82
|
attr_reader :errors
|
|
75
83
|
|
|
@@ -116,6 +124,7 @@ module Telnyx
|
|
|
116
124
|
Telnyx::AI::Assistants::ScheduledSMSEventResponse::ConversationMetadata::Variants
|
|
117
125
|
],
|
|
118
126
|
created_at: Time,
|
|
127
|
+
dynamic_variables: T::Hash[Symbol, String],
|
|
119
128
|
errors: T::Array[String],
|
|
120
129
|
retry_count: Integer,
|
|
121
130
|
scheduled_event_id: String,
|
|
@@ -132,6 +141,9 @@ module Telnyx
|
|
|
132
141
|
conversation_id: nil,
|
|
133
142
|
conversation_metadata: nil,
|
|
134
143
|
created_at: nil,
|
|
144
|
+
# A map of dynamic variable names to values. These variables can be referenced in
|
|
145
|
+
# the assistant's instructions and messages using {{variable_name}} syntax.
|
|
146
|
+
dynamic_variables: nil,
|
|
135
147
|
errors: nil,
|
|
136
148
|
retry_count: nil,
|
|
137
149
|
scheduled_event_id: nil,
|
|
@@ -156,6 +168,7 @@ module Telnyx
|
|
|
156
168
|
Telnyx::AI::Assistants::ScheduledSMSEventResponse::ConversationMetadata::Variants
|
|
157
169
|
],
|
|
158
170
|
created_at: Time,
|
|
171
|
+
dynamic_variables: T::Hash[Symbol, String],
|
|
159
172
|
errors: T::Array[String],
|
|
160
173
|
retry_count: Integer,
|
|
161
174
|
scheduled_event_id: String,
|
|
@@ -19,6 +19,7 @@ module Telnyx
|
|
|
19
19
|
Symbol,
|
|
20
20
|
Telnyx::AI::Assistants::ScheduledEventCreateParams::ConversationMetadata::Variants
|
|
21
21
|
],
|
|
22
|
+
dynamic_variables: T::Hash[Symbol, String],
|
|
22
23
|
text: String,
|
|
23
24
|
request_options: Telnyx::RequestOptions::OrHash
|
|
24
25
|
).returns(Telnyx::AI::Assistants::ScheduledEventResponse::Variants)
|
|
@@ -35,6 +36,9 @@ module Telnyx
|
|
|
35
36
|
# Metadata associated with the conversation. Telnyx provides several pieces of
|
|
36
37
|
# metadata, but customers can also add their own.
|
|
37
38
|
conversation_metadata: nil,
|
|
39
|
+
# A map of dynamic variable names to values. These variables can be referenced in
|
|
40
|
+
# the assistant's instructions and messages using {{variable_name}} syntax.
|
|
41
|
+
dynamic_variables: nil,
|
|
38
42
|
# Required for sms scheduled events. The text to be sent to the end user.
|
|
39
43
|
text: nil,
|
|
40
44
|
request_options: {}
|
|
@@ -9,6 +9,7 @@ module Telnyx
|
|
|
9
9
|
telnyx_conversation_channel: Telnyx::Models::AI::Assistants::conversation_channel_type,
|
|
10
10
|
telnyx_end_user_target: String,
|
|
11
11
|
conversation_metadata: ::Hash[Symbol, Telnyx::Models::AI::Assistants::ScheduledEventCreateParams::conversation_metadata],
|
|
12
|
+
dynamic_variables: ::Hash[Symbol, String],
|
|
12
13
|
text: String
|
|
13
14
|
}
|
|
14
15
|
& Telnyx::Internal::Type::request_parameters
|
|
@@ -31,6 +32,12 @@ module Telnyx
|
|
|
31
32
|
::Hash[Symbol, Telnyx::Models::AI::Assistants::ScheduledEventCreateParams::conversation_metadata]
|
|
32
33
|
) -> ::Hash[Symbol, Telnyx::Models::AI::Assistants::ScheduledEventCreateParams::conversation_metadata]
|
|
33
34
|
|
|
35
|
+
attr_reader dynamic_variables: ::Hash[Symbol, String]?
|
|
36
|
+
|
|
37
|
+
def dynamic_variables=: (
|
|
38
|
+
::Hash[Symbol, String]
|
|
39
|
+
) -> ::Hash[Symbol, String]
|
|
40
|
+
|
|
34
41
|
attr_reader text: String?
|
|
35
42
|
|
|
36
43
|
def text=: (String) -> String
|
|
@@ -41,6 +48,7 @@ module Telnyx
|
|
|
41
48
|
telnyx_conversation_channel: Telnyx::Models::AI::Assistants::conversation_channel_type,
|
|
42
49
|
telnyx_end_user_target: String,
|
|
43
50
|
?conversation_metadata: ::Hash[Symbol, Telnyx::Models::AI::Assistants::ScheduledEventCreateParams::conversation_metadata],
|
|
51
|
+
?dynamic_variables: ::Hash[Symbol, String],
|
|
44
52
|
?text: String,
|
|
45
53
|
?request_options: Telnyx::request_opts
|
|
46
54
|
) -> void
|
|
@@ -51,6 +59,7 @@ module Telnyx
|
|
|
51
59
|
telnyx_conversation_channel: Telnyx::Models::AI::Assistants::conversation_channel_type,
|
|
52
60
|
telnyx_end_user_target: String,
|
|
53
61
|
conversation_metadata: ::Hash[Symbol, Telnyx::Models::AI::Assistants::ScheduledEventCreateParams::conversation_metadata],
|
|
62
|
+
dynamic_variables: ::Hash[Symbol, String],
|
|
54
63
|
text: String,
|
|
55
64
|
request_options: Telnyx::RequestOptions
|
|
56
65
|
}
|
|
@@ -12,6 +12,7 @@ module Telnyx
|
|
|
12
12
|
conversation_id: String,
|
|
13
13
|
conversation_metadata: ::Hash[Symbol, Telnyx::Models::AI::Assistants::ScheduledPhoneCallEventResponse::conversation_metadata],
|
|
14
14
|
created_at: Time,
|
|
15
|
+
dynamic_variables: ::Hash[Symbol, String],
|
|
15
16
|
errors: ::Array[String],
|
|
16
17
|
retry_attempts: Integer,
|
|
17
18
|
retry_count: Integer,
|
|
@@ -44,6 +45,12 @@ module Telnyx
|
|
|
44
45
|
|
|
45
46
|
def created_at=: (Time) -> Time
|
|
46
47
|
|
|
48
|
+
attr_reader dynamic_variables: ::Hash[Symbol, String]?
|
|
49
|
+
|
|
50
|
+
def dynamic_variables=: (
|
|
51
|
+
::Hash[Symbol, String]
|
|
52
|
+
) -> ::Hash[Symbol, String]
|
|
53
|
+
|
|
47
54
|
attr_reader errors: ::Array[String]?
|
|
48
55
|
|
|
49
56
|
def errors=: (::Array[String]) -> ::Array[String]
|
|
@@ -75,6 +82,7 @@ module Telnyx
|
|
|
75
82
|
?conversation_id: String,
|
|
76
83
|
?conversation_metadata: ::Hash[Symbol, Telnyx::Models::AI::Assistants::ScheduledPhoneCallEventResponse::conversation_metadata],
|
|
77
84
|
?created_at: Time,
|
|
85
|
+
?dynamic_variables: ::Hash[Symbol, String],
|
|
78
86
|
?errors: ::Array[String],
|
|
79
87
|
?retry_attempts: Integer,
|
|
80
88
|
?retry_count: Integer,
|
|
@@ -91,6 +99,7 @@ module Telnyx
|
|
|
91
99
|
conversation_id: String,
|
|
92
100
|
conversation_metadata: ::Hash[Symbol, Telnyx::Models::AI::Assistants::ScheduledPhoneCallEventResponse::conversation_metadata],
|
|
93
101
|
created_at: Time,
|
|
102
|
+
dynamic_variables: ::Hash[Symbol, String],
|
|
94
103
|
errors: ::Array[String],
|
|
95
104
|
retry_attempts: Integer,
|
|
96
105
|
retry_count: Integer,
|
|
@@ -13,6 +13,7 @@ module Telnyx
|
|
|
13
13
|
conversation_id: String,
|
|
14
14
|
conversation_metadata: ::Hash[Symbol, Telnyx::Models::AI::Assistants::ScheduledSMSEventResponse::conversation_metadata],
|
|
15
15
|
created_at: Time,
|
|
16
|
+
dynamic_variables: ::Hash[Symbol, String],
|
|
16
17
|
errors: ::Array[String],
|
|
17
18
|
retry_count: Integer,
|
|
18
19
|
scheduled_event_id: String,
|
|
@@ -46,6 +47,12 @@ module Telnyx
|
|
|
46
47
|
|
|
47
48
|
def created_at=: (Time) -> Time
|
|
48
49
|
|
|
50
|
+
attr_reader dynamic_variables: ::Hash[Symbol, String]?
|
|
51
|
+
|
|
52
|
+
def dynamic_variables=: (
|
|
53
|
+
::Hash[Symbol, String]
|
|
54
|
+
) -> ::Hash[Symbol, String]
|
|
55
|
+
|
|
49
56
|
attr_reader errors: ::Array[String]?
|
|
50
57
|
|
|
51
58
|
def errors=: (::Array[String]) -> ::Array[String]
|
|
@@ -74,6 +81,7 @@ module Telnyx
|
|
|
74
81
|
?conversation_id: String,
|
|
75
82
|
?conversation_metadata: ::Hash[Symbol, Telnyx::Models::AI::Assistants::ScheduledSMSEventResponse::conversation_metadata],
|
|
76
83
|
?created_at: Time,
|
|
84
|
+
?dynamic_variables: ::Hash[Symbol, String],
|
|
77
85
|
?errors: ::Array[String],
|
|
78
86
|
?retry_count: Integer,
|
|
79
87
|
?scheduled_event_id: String,
|
|
@@ -90,6 +98,7 @@ module Telnyx
|
|
|
90
98
|
conversation_id: String,
|
|
91
99
|
conversation_metadata: ::Hash[Symbol, Telnyx::Models::AI::Assistants::ScheduledSMSEventResponse::conversation_metadata],
|
|
92
100
|
created_at: Time,
|
|
101
|
+
dynamic_variables: ::Hash[Symbol, String],
|
|
93
102
|
errors: ::Array[String],
|
|
94
103
|
retry_count: Integer,
|
|
95
104
|
scheduled_event_id: String,
|
|
@@ -10,6 +10,7 @@ module Telnyx
|
|
|
10
10
|
telnyx_conversation_channel: Telnyx::Models::AI::Assistants::conversation_channel_type,
|
|
11
11
|
telnyx_end_user_target: String,
|
|
12
12
|
?conversation_metadata: ::Hash[Symbol, Telnyx::Models::AI::Assistants::ScheduledEventCreateParams::conversation_metadata],
|
|
13
|
+
?dynamic_variables: ::Hash[Symbol, String],
|
|
13
14
|
?text: String,
|
|
14
15
|
?request_options: Telnyx::request_opts
|
|
15
16
|
) -> Telnyx::Models::AI::Assistants::scheduled_event_response
|