@@ -592,7 +592,7 @@ No authorization required
592592
593593## ListRollup
594594
595- > [ ] ResponsesRollupWithStats ListRollup(ctx).Limit(limit).Offset(offset).Sort(sort).SortBy(sortBy).Execute()
595+ > [ ] ResponsesRollupWithStats ListRollup(ctx).Limit(limit).Offset(offset).Sort(sort).SortBy(sortBy).Category(category). Execute()
596596
597597List rollups info
598598
@@ -615,10 +615,11 @@ func main() {
615615 offset := int32 (56 ) // int32 | Offset (optional)
616616 sort := " sort_example" // string | Sort order. Default: desc (optional)
617617 sortBy := " sortBy_example" // string | Sort field. Default: size (optional)
618+ category := " category_example" // string | Comma-separated rollup category list (optional)
618619
619620 configuration := openapiclient.NewConfiguration ()
620621 apiClient := openapiclient.NewAPIClient (configuration)
621- resp , r , err := apiClient.RollupAPI .ListRollup (context.Background ()).Limit (limit).Offset (offset).Sort (sort).SortBy (sortBy).Execute ()
622+ resp , r , err := apiClient.RollupAPI .ListRollup (context.Background ()).Limit (limit).Offset (offset).Sort (sort).SortBy (sortBy).Category (category). Execute ()
622623 if err != nil {
623624 fmt.Fprintf (os.Stderr , " Error when calling `RollupAPI.ListRollup``: %v \n " , err)
624625 fmt.Fprintf (os.Stderr , " Full HTTP response: %v \n " , r)
@@ -643,6 +644,7 @@ Name | Type | Description | Notes
643644 ** offset** | ** int32** | Offset |
644645 ** sort** | ** string** | Sort order. Default: desc |
645646 ** sortBy** | ** string** | Sort field. Default: size |
647+ ** category** | ** string** | Comma-separated rollup category list |
646648
647649### Return type
648650
@@ -664,7 +666,7 @@ No authorization required
664666
665667## ListRollup24h
666668
667- > [ ] ResponsesRollupWithDayStats ListRollup24h(ctx).Limit(limit).Offset(offset).Sort(sort).SortBy(sortBy).Execute()
669+ > [ ] ResponsesRollupWithDayStats ListRollup24h(ctx).Limit(limit).Offset(offset).Sort(sort).SortBy(sortBy).Category(category). Execute()
668670
669671List rollups info with stats by previous 24 hours
670672
@@ -687,10 +689,11 @@ func main() {
687689 offset := int32 (56 ) // int32 | Offset (optional)
688690 sort := " sort_example" // string | Sort order. Default: desc (optional)
689691 sortBy := " sortBy_example" // string | Sort field. Default: mb_price (optional)
692+ category := " category_example" // string | Comma-separated rollup category list (optional)
690693
691694 configuration := openapiclient.NewConfiguration ()
692695 apiClient := openapiclient.NewAPIClient (configuration)
693- resp , r , err := apiClient.RollupAPI .ListRollup24h (context.Background ()).Limit (limit).Offset (offset).Sort (sort).SortBy (sortBy).Execute ()
696+ resp , r , err := apiClient.RollupAPI .ListRollup24h (context.Background ()).Limit (limit).Offset (offset).Sort (sort).SortBy (sortBy).Category (category). Execute ()
694697 if err != nil {
695698 fmt.Fprintf (os.Stderr , " Error when calling `RollupAPI.ListRollup24h``: %v \n " , err)
696699 fmt.Fprintf (os.Stderr , " Full HTTP response: %v \n " , r)
@@ -715,6 +718,7 @@ Name | Type | Description | Notes
715718 ** offset** | ** int32** | Offset |
716719 ** sort** | ** string** | Sort order. Default: desc |
717720 ** sortBy** | ** string** | Sort field. Default: mb_price |
721+ ** category** | ** string** | Comma-separated rollup category list |
718722
719723### Return type
720724
0 commit comments