|
18 | 18 | async_to_streamed_response_wrapper, |
19 | 19 | ) |
20 | 20 | from .._base_client import make_request_options |
21 | | -from ..types.audience import Audience |
22 | | -from ..types.filter_param import FilterParam |
| 21 | +from ..types.shared.audience import Audience |
| 22 | +from ..types.shared_params.filter import Filter |
23 | 23 | from ..types.audience_list_response import AudienceListResponse |
24 | 24 | from ..types.audience_update_response import AudienceUpdateResponse |
25 | 25 | from ..types.audience_list_members_response import AudienceListMembersResponse |
@@ -85,7 +85,7 @@ def update( |
85 | 85 | audience_id: str, |
86 | 86 | *, |
87 | 87 | description: Optional[str] | Omit = omit, |
88 | | - filter: Optional[FilterParam] | Omit = omit, |
| 88 | + filter: Optional[Filter] | Omit = omit, |
89 | 89 | name: Optional[str] | Omit = omit, |
90 | 90 | # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs. |
91 | 91 | # The extra values given here take precedence over values defined on the client or passed to this method. |
@@ -300,7 +300,7 @@ async def update( |
300 | 300 | audience_id: str, |
301 | 301 | *, |
302 | 302 | description: Optional[str] | Omit = omit, |
303 | | - filter: Optional[FilterParam] | Omit = omit, |
| 303 | + filter: Optional[Filter] | Omit = omit, |
304 | 304 | name: Optional[str] | Omit = omit, |
305 | 305 | # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs. |
306 | 306 | # The extra values given here take precedence over values defined on the client or passed to this method. |
|
0 commit comments