@@ -1502,6 +1502,8 @@ public async System.Threading.Tasks.Task<ApiResponse<PowerFormSendersResponse>>
15021502 /// </summary>
15031503 public class ListPowerFormsOptions
15041504 {
1505+ ///
1506+ public string count { get ; set ; }
15051507 ///
15061508 public string fromDate { get ; set ; }
15071509 ///
@@ -1513,6 +1515,8 @@ public class ListPowerFormsOptions
15131515 ///
15141516 public string searchText { get ; set ; }
15151517 ///
1518+ public string startPosition { get ; set ; }
1519+ ///
15161520 public string toDate { get ; set ; }
15171521 }
15181522
@@ -1570,11 +1574,13 @@ public ApiResponse<PowerFormsResponse> ListPowerFormsWithHttpInfo(string account
15701574 if ( accountId != null ) localVarPathParams . Add ( "accountId" , this . ApiClient . ParameterToString ( accountId ) ) ; // path parameter
15711575 if ( options != null )
15721576 {
1577+ if ( options . count != null ) localVarQueryParams . Add ( "count" , this . ApiClient . ParameterToString ( options . count ) ) ; // query parameter
15731578 if ( options . fromDate != null ) localVarQueryParams . Add ( "from_date" , this . ApiClient . ParameterToString ( options . fromDate ) ) ; // query parameter
15741579 if ( options . order != null ) localVarQueryParams . Add ( "order" , this . ApiClient . ParameterToString ( options . order ) ) ; // query parameter
15751580 if ( options . orderBy != null ) localVarQueryParams . Add ( "order_by" , this . ApiClient . ParameterToString ( options . orderBy ) ) ; // query parameter
15761581 if ( options . searchFields != null ) localVarQueryParams . Add ( "search_fields" , this . ApiClient . ParameterToString ( options . searchFields ) ) ; // query parameter
15771582 if ( options . searchText != null ) localVarQueryParams . Add ( "search_text" , this . ApiClient . ParameterToString ( options . searchText ) ) ; // query parameter
1583+ if ( options . startPosition != null ) localVarQueryParams . Add ( "start_position" , this . ApiClient . ParameterToString ( options . startPosition ) ) ; // query parameter
15781584 if ( options . toDate != null ) localVarQueryParams . Add ( "to_date" , this . ApiClient . ParameterToString ( options . toDate ) ) ; // query parameter
15791585 }
15801586
@@ -1657,11 +1663,13 @@ public async System.Threading.Tasks.Task<ApiResponse<PowerFormsResponse>> ListPo
16571663 if ( accountId != null ) localVarPathParams . Add ( "accountId" , this . ApiClient . ParameterToString ( accountId ) ) ; // path parameter
16581664 if ( options != null )
16591665 {
1666+ if ( options . count != null ) localVarQueryParams . Add ( "count" , this . ApiClient . ParameterToString ( options . count ) ) ; // query parameter
16601667 if ( options . fromDate != null ) localVarQueryParams . Add ( "from_date" , this . ApiClient . ParameterToString ( options . fromDate ) ) ; // query parameter
16611668 if ( options . order != null ) localVarQueryParams . Add ( "order" , this . ApiClient . ParameterToString ( options . order ) ) ; // query parameter
16621669 if ( options . orderBy != null ) localVarQueryParams . Add ( "order_by" , this . ApiClient . ParameterToString ( options . orderBy ) ) ; // query parameter
16631670 if ( options . searchFields != null ) localVarQueryParams . Add ( "search_fields" , this . ApiClient . ParameterToString ( options . searchFields ) ) ; // query parameter
16641671 if ( options . searchText != null ) localVarQueryParams . Add ( "search_text" , this . ApiClient . ParameterToString ( options . searchText ) ) ; // query parameter
1672+ if ( options . startPosition != null ) localVarQueryParams . Add ( "start_position" , this . ApiClient . ParameterToString ( options . startPosition ) ) ; // query parameter
16651673 if ( options . toDate != null ) localVarQueryParams . Add ( "to_date" , this . ApiClient . ParameterToString ( options . toDate ) ) ; // query parameter
16661674 }
16671675
0 commit comments