@@ -45,6 +45,7 @@ def get_taxes_and_fees_get(
4545 property_id : Annotated [Optional [StrictStr ], Field (description = "Property ID" )] = None ,
4646 include_deleted : Annotated [Optional [StrictBool ], Field (description = "If the response should include deleted taxes and fees" )] = None ,
4747 include_expired : Annotated [Optional [StrictBool ], Field (description = "If the response should include expired taxes and fees" )] = None ,
48+ include_custom_item_taxes : Annotated [Optional [StrictBool ], Field (description = "If the response should include custom item taxes" )] = None ,
4849 _request_timeout : Union [
4950 None ,
5051 Annotated [StrictFloat , Field (gt = 0 )],
@@ -68,6 +69,8 @@ def get_taxes_and_fees_get(
6869 :type include_deleted: bool
6970 :param include_expired: If the response should include expired taxes and fees
7071 :type include_expired: bool
72+ :param include_custom_item_taxes: If the response should include custom item taxes
73+ :type include_custom_item_taxes: bool
7174 :param _request_timeout: timeout setting for this request. If one
7275 number provided, it will be total request
7376 timeout. It can also be a pair (tuple) of
@@ -94,6 +97,7 @@ def get_taxes_and_fees_get(
9497 property_id = property_id ,
9598 include_deleted = include_deleted ,
9699 include_expired = include_expired ,
100+ include_custom_item_taxes = include_custom_item_taxes ,
97101 _request_auth = _request_auth ,
98102 _content_type = _content_type ,
99103 _headers = _headers ,
@@ -120,6 +124,7 @@ def get_taxes_and_fees_get_with_http_info(
120124 property_id : Annotated [Optional [StrictStr ], Field (description = "Property ID" )] = None ,
121125 include_deleted : Annotated [Optional [StrictBool ], Field (description = "If the response should include deleted taxes and fees" )] = None ,
122126 include_expired : Annotated [Optional [StrictBool ], Field (description = "If the response should include expired taxes and fees" )] = None ,
127+ include_custom_item_taxes : Annotated [Optional [StrictBool ], Field (description = "If the response should include custom item taxes" )] = None ,
123128 _request_timeout : Union [
124129 None ,
125130 Annotated [StrictFloat , Field (gt = 0 )],
@@ -143,6 +148,8 @@ def get_taxes_and_fees_get_with_http_info(
143148 :type include_deleted: bool
144149 :param include_expired: If the response should include expired taxes and fees
145150 :type include_expired: bool
151+ :param include_custom_item_taxes: If the response should include custom item taxes
152+ :type include_custom_item_taxes: bool
146153 :param _request_timeout: timeout setting for this request. If one
147154 number provided, it will be total request
148155 timeout. It can also be a pair (tuple) of
@@ -169,6 +176,7 @@ def get_taxes_and_fees_get_with_http_info(
169176 property_id = property_id ,
170177 include_deleted = include_deleted ,
171178 include_expired = include_expired ,
179+ include_custom_item_taxes = include_custom_item_taxes ,
172180 _request_auth = _request_auth ,
173181 _content_type = _content_type ,
174182 _headers = _headers ,
@@ -195,6 +203,7 @@ def get_taxes_and_fees_get_without_preload_content(
195203 property_id : Annotated [Optional [StrictStr ], Field (description = "Property ID" )] = None ,
196204 include_deleted : Annotated [Optional [StrictBool ], Field (description = "If the response should include deleted taxes and fees" )] = None ,
197205 include_expired : Annotated [Optional [StrictBool ], Field (description = "If the response should include expired taxes and fees" )] = None ,
206+ include_custom_item_taxes : Annotated [Optional [StrictBool ], Field (description = "If the response should include custom item taxes" )] = None ,
198207 _request_timeout : Union [
199208 None ,
200209 Annotated [StrictFloat , Field (gt = 0 )],
@@ -218,6 +227,8 @@ def get_taxes_and_fees_get_without_preload_content(
218227 :type include_deleted: bool
219228 :param include_expired: If the response should include expired taxes and fees
220229 :type include_expired: bool
230+ :param include_custom_item_taxes: If the response should include custom item taxes
231+ :type include_custom_item_taxes: bool
221232 :param _request_timeout: timeout setting for this request. If one
222233 number provided, it will be total request
223234 timeout. It can also be a pair (tuple) of
@@ -244,6 +255,7 @@ def get_taxes_and_fees_get_without_preload_content(
244255 property_id = property_id ,
245256 include_deleted = include_deleted ,
246257 include_expired = include_expired ,
258+ include_custom_item_taxes = include_custom_item_taxes ,
247259 _request_auth = _request_auth ,
248260 _content_type = _content_type ,
249261 _headers = _headers ,
@@ -265,6 +277,7 @@ def _get_taxes_and_fees_get_serialize(
265277 property_id ,
266278 include_deleted ,
267279 include_expired ,
280+ include_custom_item_taxes ,
268281 _request_auth ,
269282 _content_type ,
270283 _headers ,
@@ -299,6 +312,10 @@ def _get_taxes_and_fees_get_serialize(
299312
300313 _query_params .append (('includeExpired' , include_expired ))
301314
315+ if include_custom_item_taxes is not None :
316+
317+ _query_params .append (('includeCustomItemTaxes' , include_custom_item_taxes ))
318+
302319 # process the header parameters
303320 # process the form parameters
304321 # process the body parameter
0 commit comments