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** | **str** | Phone number or alphanumeric sender name | [optional]
9
-
**validity** | **int** | After how many minutes this channel is considered as failed and the next channel is attempted | [optional]
9
+
**validity** | **int** | 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]
10
+
**ttl** | **int** | 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]
10
11
**autoconvert** | **str** | 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** | **str** | Phone number or alphanumeric sender name | [optional]
8
-
**validity** | **int** | After how many minutes this channel is considered as failed and the next channel is attempted | [optional]
8
+
**validity** | **int** | 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]
9
+
**ttl** | **int** | 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]
9
10
**text** | **str** | Plaintext content for Viber | [optional]
10
11
**image_url** | **str** | URL for the embedded image Valid combinations: 1) image_url, 2) text, image_url, button_url, button_text | [optional]
11
12
**button_url** | **str** | URL of the button, must be specified along with ''text'', ''button_text'' and ''image_url'' (optional) | [optional]
**sender** | **str** | Phone number or alphanumeric sender name | [optional]
8
8
**validity** | **int** | After how many minutes this channel is considered as failed and the next channel is attempted | [optional]
9
+
**ttl** | **int** | 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]
After how many minutes this channel is considered as failed and the next channel is attempted # noqa: E501
137
+
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. # noqa: E501
133
138
134
139
:return: The validity of this SMS. # noqa: E501
135
140
:rtype: int
@@ -140,14 +145,37 @@ def validity(self):
140
145
defvalidity(self, validity):
141
146
"""Sets the validity of this SMS.
142
147
143
-
After how many minutes this channel is considered as failed and the next channel is attempted # noqa: E501
148
+
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. # noqa: E501
144
149
145
150
:param validity: The validity of this SMS. # noqa: E501
146
151
:type validity: int
147
152
"""
148
153
149
154
self._validity=validity
150
155
156
+
@property
157
+
defttl(self):
158
+
"""Gets the ttl of this SMS. # noqa: E501
159
+
160
+
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. # noqa: E501
161
+
162
+
:return: The ttl of this SMS. # noqa: E501
163
+
:rtype: int
164
+
"""
165
+
returnself._ttl
166
+
167
+
@ttl.setter
168
+
defttl(self, ttl):
169
+
"""Sets the ttl of this SMS.
170
+
171
+
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. # noqa: E501
After how many minutes this channel is considered as failed and the next channel is attempted # noqa: E501
118
+
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. # noqa: E501
114
119
115
120
:return: The validity of this Viber. # noqa: E501
116
121
:rtype: int
@@ -121,14 +126,37 @@ def validity(self):
121
126
defvalidity(self, validity):
122
127
"""Sets the validity of this Viber.
123
128
124
-
After how many minutes this channel is considered as failed and the next channel is attempted # noqa: E501
129
+
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. # noqa: E501
125
130
126
131
:param validity: The validity of this Viber. # noqa: E501
127
132
:type validity: int
128
133
"""
129
134
130
135
self._validity=validity
131
136
137
+
@property
138
+
defttl(self):
139
+
"""Gets the ttl of this Viber. # noqa: E501
140
+
141
+
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. # noqa: E501
142
+
143
+
:return: The ttl of this Viber. # noqa: E501
144
+
:rtype: int
145
+
"""
146
+
returnself._ttl
147
+
148
+
@ttl.setter
149
+
defttl(self, ttl):
150
+
"""Sets the ttl of this Viber.
151
+
152
+
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. # noqa: E501
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. # noqa: E501
142
+
143
+
:return: The ttl of this WhatsApp. # noqa: E501
144
+
:rtype: int
145
+
"""
146
+
returnself._ttl
147
+
148
+
@ttl.setter
149
+
defttl(self, ttl):
150
+
"""Sets the ttl of this WhatsApp.
151
+
152
+
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. # noqa: E501
153
+
154
+
:param ttl: The ttl of this WhatsApp. # noqa: E501
0 commit comments