2929from ..._base_client import AsyncPaginator , make_request_options
3030from ...types .tenant import Tenant
3131from ...types .recipients .inline_channel_data_request_param import InlineChannelDataRequestParam
32- from ...types .recipients .inline_preference_set_request_param import InlinePreferenceSetRequestParam
3332
3433__all__ = ["TenantsResource" , "AsyncTenantsResource" ]
3534
@@ -189,7 +188,6 @@ def set(
189188 id : str ,
190189 * ,
191190 channel_data : Optional [InlineChannelDataRequestParam ] | NotGiven = NOT_GIVEN ,
192- preferences : Optional [InlinePreferenceSetRequestParam ] | NotGiven = NOT_GIVEN ,
193191 settings : tenant_set_params .Settings | NotGiven = NOT_GIVEN ,
194192 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
195193 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -206,8 +204,6 @@ def set(
206204 Args:
207205 channel_data: A request to set channel data for a type of channel inline.
208206
209- preferences: Inline set preferences for a recipient, where the key is the preference set id.
210-
211207 settings: The settings for the tenant. Includes branding and preference set.
212208
213209 extra_headers: Send extra headers
@@ -225,7 +221,6 @@ def set(
225221 body = maybe_transform (
226222 {
227223 "channel_data" : channel_data ,
228- "preferences" : preferences ,
229224 "settings" : settings ,
230225 },
231226 tenant_set_params .TenantSetParams ,
@@ -392,7 +387,6 @@ async def set(
392387 id : str ,
393388 * ,
394389 channel_data : Optional [InlineChannelDataRequestParam ] | NotGiven = NOT_GIVEN ,
395- preferences : Optional [InlinePreferenceSetRequestParam ] | NotGiven = NOT_GIVEN ,
396390 settings : tenant_set_params .Settings | NotGiven = NOT_GIVEN ,
397391 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
398392 # 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(
409403 Args:
410404 channel_data: A request to set channel data for a type of channel inline.
411405
412- preferences: Inline set preferences for a recipient, where the key is the preference set id.
413-
414406 settings: The settings for the tenant. Includes branding and preference set.
415407
416408 extra_headers: Send extra headers
@@ -428,7 +420,6 @@ async def set(
428420 body = await async_maybe_transform (
429421 {
430422 "channel_data" : channel_data ,
431- "preferences" : preferences ,
432423 "settings" : settings ,
433424 },
434425 tenant_set_params .TenantSetParams ,
0 commit comments