You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|**sender**|**String**| Phone number or alphanumeric sender name |[optional]|
11
11
|**validity**|**Integer**| After how many minutes this channel is considered as failed and the next channel is attempted |[optional]|
12
+
|**ttl**|**Integer**| After how many seconds this channel is considered as failed and the next channel is attempted. Only one of \"ttl\" and \"validity\" can be used. |[optional]|
12
13
|**text**|**String**| Plaintext content for Telegram ||
13
14
|**imageUrl**|**String**| URL for the embedded image. Mutually exclusive with \"document_url\" and \"audio_url\" |[optional]|
14
15
|**buttonUrl**|**String**| URL of the button, must be specified along with ''text'', ''button_text'' and ''image_url'' (optional) |[optional]|
|**sender**|**String**| Phone number or alphanumeric sender name |[optional]|
13
-
|**validity**|**Integer**| After how many minutes this channel is considered as failed and the next channel is attempted |[optional]|
13
+
|**validity**|**Integer**| After how many minutes this channel is considered as failed and the next channel is attempted. Only one of \"ttl\" and \"validity\" can be used. |[optional]|
14
+
|**ttl**|**Integer**| After how many seconds this channel is considered as failed and the next channel is attempted. Only one of \"ttl\" and \"validity\" can be used. |[optional]|
14
15
|**autoconvert**|[**AutoconvertEnum**](#AutoconvertEnum)| Defines how non-GSM characters will be treated: - \"on\" Use replacement settings from the account's [API Auto Replace settings page](https://dashboard.messente.com/api-settings/auto-replace) (default) - \"full\" All non GSM 03.38 characters will be replaced with suitable alternatives - \"off\" Message content is not modified in any way |[optional]|
|**sender**|**String**| Phone number or alphanumeric sender name |[optional]|
12
-
|**validity**|**Integer**| After how many minutes this channel is considered as failed and the next channel is attempted |[optional]|
12
+
|**validity**|**Integer**| After how many minutes this channel is considered as failed and the next channel is attempted. Only one of \"ttl\" and \"validity\" can be used. |[optional]|
13
+
|**ttl**|**Integer**| After how many seconds this channel is considered as failed and the next channel is attempted. Only one of \"ttl\" and \"validity\" can be used. |[optional]|
13
14
|**text**|**String**| Plaintext content for Viber |[optional]|
14
15
|**imageUrl**|**String**| URL for the embedded image Valid combinations: 1) image_url, 2) text, image_url, button_url, button_text |[optional]|
15
16
|**buttonUrl**|**String**| URL of the button, must be specified along with ''text'', ''button_text'' and ''image_url'' (optional) |[optional]|
|**sender**|**String**| Phone number or alphanumeric sender name |[optional]|
12
12
|**validity**|**Integer**| After how many minutes this channel is considered as failed and the next channel is attempted |[optional]|
13
+
|**ttl**|**Integer**| After how many seconds this channel is considered as failed and the next channel is attempted. Only one of \"ttl\" and \"validity\" can be used. |[optional]|
* Defines how non-GSM characters will be treated: - \"on\" Use replacement settings from the account's [API Auto Replace settings page](https://dashboard.messente.com/api-settings/auto-replace) (default) - \"full\" All non GSM 03.38 characters will be replaced with suitable alternatives - \"off\" Message content is not modified in any way
67
71
*/
@@ -224,11 +228,11 @@ public SMS validity(Integer validity) {
224
228
}
225
229
226
230
/**
227
-
* After how many minutes this channel is considered as failed and the next channel is attempted
231
+
* After how many minutes this channel is considered as failed and the next channel is attempted. Only one of \"ttl\" and \"validity\" can be used.
228
232
* @return validity
229
233
**/
230
234
@javax.annotation.Nullable
231
-
@ApiModelProperty(example = "360", value = "After how many minutes this channel is considered as failed and the next channel is attempted")
235
+
@ApiModelProperty(example = "360", value = "After how many minutes this channel is considered as failed and the next channel is attempted. Only one of \"ttl\" and \"validity\" can be used.")
232
236
233
237
publicIntegergetValidity() {
234
238
returnvalidity;
@@ -240,6 +244,29 @@ public void setValidity(Integer validity) {
240
244
}
241
245
242
246
247
+
publicSMSttl(Integerttl) {
248
+
249
+
this.ttl = ttl;
250
+
returnthis;
251
+
}
252
+
253
+
/**
254
+
* After how many seconds this channel is considered as failed and the next channel is attempted. Only one of \"ttl\" and \"validity\" can be used.
255
+
* @return ttl
256
+
**/
257
+
@javax.annotation.Nullable
258
+
@ApiModelProperty(example = "21600", value = "After how many seconds this channel is considered as failed and the next channel is attempted. Only one of \"ttl\" and \"validity\" can be used.")
@@ -156,11 +160,11 @@ public Viber validity(Integer validity) {
156
160
}
157
161
158
162
/**
159
-
* After how many minutes this channel is considered as failed and the next channel is attempted
163
+
* After how many minutes this channel is considered as failed and the next channel is attempted. Only one of \"ttl\" and \"validity\" can be used.
160
164
* @return validity
161
165
**/
162
166
@javax.annotation.Nullable
163
-
@ApiModelProperty(example = "360", value = "After how many minutes this channel is considered as failed and the next channel is attempted")
167
+
@ApiModelProperty(example = "360", value = "After how many minutes this channel is considered as failed and the next channel is attempted. Only one of \"ttl\" and \"validity\" can be used.")
164
168
165
169
publicIntegergetValidity() {
166
170
returnvalidity;
@@ -172,6 +176,29 @@ public void setValidity(Integer validity) {
172
176
}
173
177
174
178
179
+
publicViberttl(Integerttl) {
180
+
181
+
this.ttl = ttl;
182
+
returnthis;
183
+
}
184
+
185
+
/**
186
+
* After how many seconds this channel is considered as failed and the next channel is attempted. Only one of \"ttl\" and \"validity\" can be used.
187
+
* @return ttl
188
+
**/
189
+
@javax.annotation.Nullable
190
+
@ApiModelProperty(example = "21600", value = "After how many seconds this channel is considered as failed and the next channel is attempted. Only one of \"ttl\" and \"validity\" can be used.")
191
+
192
+
publicIntegergetTtl() {
193
+
returnttl;
194
+
}
195
+
196
+
197
+
publicvoidsetTtl(Integerttl) {
198
+
this.ttl = ttl;
199
+
}
200
+
201
+
175
202
publicVibertext(Stringtext) {
176
203
177
204
this.text = text;
@@ -299,6 +326,7 @@ public boolean equals(Object o) {
@@ -176,6 +180,29 @@ public void setValidity(Integer validity) {
176
180
}
177
181
178
182
183
+
publicWhatsAppttl(Integerttl) {
184
+
185
+
this.ttl = ttl;
186
+
returnthis;
187
+
}
188
+
189
+
/**
190
+
* After how many seconds this channel is considered as failed and the next channel is attempted. Only one of \"ttl\" and \"validity\" can be used.
191
+
* @return ttl
192
+
**/
193
+
@javax.annotation.Nullable
194
+
@ApiModelProperty(example = "21600", value = "After how many seconds this channel is considered as failed and the next channel is attempted. Only one of \"ttl\" and \"validity\" can be used.")
195
+
196
+
publicIntegergetTtl() {
197
+
returnttl;
198
+
}
199
+
200
+
201
+
publicvoidsetTtl(Integerttl) {
202
+
this.ttl = ttl;
203
+
}
204
+
205
+
179
206
publicWhatsApptext(WhatsAppTexttext) {
180
207
181
208
this.text = text;
@@ -303,6 +330,7 @@ public boolean equals(Object o) {
0 commit comments