29
29
from ..._base_client import AsyncPaginator , make_request_options
30
30
from ...types .tenant import Tenant
31
31
from ...types .recipients .inline_channel_data_request_param import InlineChannelDataRequestParam
32
- from ...types .recipients .inline_preference_set_request_param import InlinePreferenceSetRequestParam
33
32
34
33
__all__ = ["TenantsResource" , "AsyncTenantsResource" ]
35
34
@@ -189,7 +188,6 @@ def set(
189
188
id : str ,
190
189
* ,
191
190
channel_data : Optional [InlineChannelDataRequestParam ] | NotGiven = NOT_GIVEN ,
192
- preferences : Optional [InlinePreferenceSetRequestParam ] | NotGiven = NOT_GIVEN ,
193
191
settings : tenant_set_params .Settings | NotGiven = NOT_GIVEN ,
194
192
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
195
193
# The extra values given here take precedence over values defined on the client or passed to this method.
@@ -206,8 +204,6 @@ def set(
206
204
Args:
207
205
channel_data: A request to set channel data for a type of channel inline.
208
206
209
- preferences: Inline set preferences for a recipient, where the key is the preference set id.
210
-
211
207
settings: The settings for the tenant. Includes branding and preference set.
212
208
213
209
extra_headers: Send extra headers
@@ -225,7 +221,6 @@ def set(
225
221
body = maybe_transform (
226
222
{
227
223
"channel_data" : channel_data ,
228
- "preferences" : preferences ,
229
224
"settings" : settings ,
230
225
},
231
226
tenant_set_params .TenantSetParams ,
@@ -392,7 +387,6 @@ async def set(
392
387
id : str ,
393
388
* ,
394
389
channel_data : Optional [InlineChannelDataRequestParam ] | NotGiven = NOT_GIVEN ,
395
- preferences : Optional [InlinePreferenceSetRequestParam ] | NotGiven = NOT_GIVEN ,
396
390
settings : tenant_set_params .Settings | NotGiven = NOT_GIVEN ,
397
391
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
398
392
# The extra values given here take precedence over values defined on the client or passed to this method.
@@ -409,8 +403,6 @@ async def set(
409
403
Args:
410
404
channel_data: A request to set channel data for a type of channel inline.
411
405
412
- preferences: Inline set preferences for a recipient, where the key is the preference set id.
413
-
414
406
settings: The settings for the tenant. Includes branding and preference set.
415
407
416
408
extra_headers: Send extra headers
@@ -428,7 +420,6 @@ async def set(
428
420
body = await async_maybe_transform (
429
421
{
430
422
"channel_data" : channel_data ,
431
- "preferences" : preferences ,
432
423
"settings" : settings ,
433
424
},
434
425
tenant_set_params .TenantSetParams ,
0 commit comments