@@ -40,7 +40,6 @@ def list(
4040 self ,
4141 customer_id : Optional [str ],
4242 * ,
43- group_by : Optional [str ] | NotGiven = NOT_GIVEN ,
4443 timeframe_end : Union [str , datetime , None ] | NotGiven = NOT_GIVEN ,
4544 timeframe_start : Union [str , datetime , None ] | NotGiven = NOT_GIVEN ,
4645 view_mode : Optional [Literal ["periodic" , "cumulative" ]] | NotGiven = NOT_GIVEN ,
@@ -188,8 +187,6 @@ def list(
188187 `grouping_value` and `secondary_grouping_value` available.
189188
190189 Args:
191- group_by: Groups per-price costs by the key provided.
192-
193190 timeframe_end: Costs returned are exclusive of `timeframe_end`.
194191
195192 timeframe_start: Costs returned are inclusive of `timeframe_start`.
@@ -218,7 +215,6 @@ def list(
218215 timeout = timeout ,
219216 query = maybe_transform (
220217 {
221- "group_by" : group_by ,
222218 "timeframe_end" : timeframe_end ,
223219 "timeframe_start" : timeframe_start ,
224220 "view_mode" : view_mode ,
@@ -233,7 +229,6 @@ def list_by_external_id(
233229 self ,
234230 external_customer_id : Optional [str ],
235231 * ,
236- group_by : Optional [str ] | NotGiven = NOT_GIVEN ,
237232 timeframe_end : Union [str , datetime , None ] | NotGiven = NOT_GIVEN ,
238233 timeframe_start : Union [str , datetime , None ] | NotGiven = NOT_GIVEN ,
239234 view_mode : Optional [Literal ["periodic" , "cumulative" ]] | NotGiven = NOT_GIVEN ,
@@ -381,8 +376,6 @@ def list_by_external_id(
381376 `grouping_value` and `secondary_grouping_value` available.
382377
383378 Args:
384- group_by: Groups per-price costs by the key provided.
385-
386379 timeframe_end: Costs returned are exclusive of `timeframe_end`.
387380
388381 timeframe_start: Costs returned are inclusive of `timeframe_start`.
@@ -413,7 +406,6 @@ def list_by_external_id(
413406 timeout = timeout ,
414407 query = maybe_transform (
415408 {
416- "group_by" : group_by ,
417409 "timeframe_end" : timeframe_end ,
418410 "timeframe_start" : timeframe_start ,
419411 "view_mode" : view_mode ,
@@ -438,7 +430,6 @@ async def list(
438430 self ,
439431 customer_id : Optional [str ],
440432 * ,
441- group_by : Optional [str ] | NotGiven = NOT_GIVEN ,
442433 timeframe_end : Union [str , datetime , None ] | NotGiven = NOT_GIVEN ,
443434 timeframe_start : Union [str , datetime , None ] | NotGiven = NOT_GIVEN ,
444435 view_mode : Optional [Literal ["periodic" , "cumulative" ]] | NotGiven = NOT_GIVEN ,
@@ -586,8 +577,6 @@ async def list(
586577 `grouping_value` and `secondary_grouping_value` available.
587578
588579 Args:
589- group_by: Groups per-price costs by the key provided.
590-
591580 timeframe_end: Costs returned are exclusive of `timeframe_end`.
592581
593582 timeframe_start: Costs returned are inclusive of `timeframe_start`.
@@ -616,7 +605,6 @@ async def list(
616605 timeout = timeout ,
617606 query = maybe_transform (
618607 {
619- "group_by" : group_by ,
620608 "timeframe_end" : timeframe_end ,
621609 "timeframe_start" : timeframe_start ,
622610 "view_mode" : view_mode ,
@@ -631,7 +619,6 @@ async def list_by_external_id(
631619 self ,
632620 external_customer_id : Optional [str ],
633621 * ,
634- group_by : Optional [str ] | NotGiven = NOT_GIVEN ,
635622 timeframe_end : Union [str , datetime , None ] | NotGiven = NOT_GIVEN ,
636623 timeframe_start : Union [str , datetime , None ] | NotGiven = NOT_GIVEN ,
637624 view_mode : Optional [Literal ["periodic" , "cumulative" ]] | NotGiven = NOT_GIVEN ,
@@ -779,8 +766,6 @@ async def list_by_external_id(
779766 `grouping_value` and `secondary_grouping_value` available.
780767
781768 Args:
782- group_by: Groups per-price costs by the key provided.
783-
784769 timeframe_end: Costs returned are exclusive of `timeframe_end`.
785770
786771 timeframe_start: Costs returned are inclusive of `timeframe_start`.
@@ -811,7 +796,6 @@ async def list_by_external_id(
811796 timeout = timeout ,
812797 query = maybe_transform (
813798 {
814- "group_by" : group_by ,
815799 "timeframe_end" : timeframe_end ,
816800 "timeframe_start" : timeframe_start ,
817801 "view_mode" : view_mode ,
0 commit comments