File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -59588,13 +59588,14 @@ paths:
5958859588 results.'
5958959589 operationId: ListFleetAgents
5959059590 parameters:
59591- - description: Page number for pagination (must be greater than 0).
59591+ - description: Page number for pagination (starts at 0).
5959259592 in: query
5959359593 name: page_number
5959459594 required: false
5959559595 schema:
59596+ default: 0
5959659597 format: int64
59597- minimum: 1
59598+ minimum: 0
5959859599 type: integer
5959959600 - description: Number of results per page (must be greater than 0 and less than
5960059601 or equal to 100).
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ impl GetFleetDeploymentOptionalParams {
3838#[ non_exhaustive]
3939#[ derive( Clone , Default , Debug ) ]
4040pub struct ListFleetAgentsOptionalParams {
41- /// Page number for pagination (must be greater than 0).
41+ /// Page number for pagination (starts at 0).
4242 pub page_number : Option < i64 > ,
4343 /// Number of results per page (must be greater than 0 and less than or equal to 100).
4444 pub page_size : Option < i64 > ,
@@ -53,7 +53,7 @@ pub struct ListFleetAgentsOptionalParams {
5353}
5454
5555impl ListFleetAgentsOptionalParams {
56- /// Page number for pagination (must be greater than 0).
56+ /// Page number for pagination (starts at 0).
5757 pub fn page_number ( mut self , value : i64 ) -> Self {
5858 self . page_number = Some ( value) ;
5959 self
You can’t perform that action at this time.
0 commit comments