@@ -633,8 +633,8 @@ public class IngestionClient(
633
633
* @param page Page number of the paginated API response.
634
634
* @param type Type of authentication resource to retrieve.
635
635
* @param platform Ecommerce platform for which to retrieve authentications.
636
- * @param sort Property by which to sort the list of authentications. (default to createdAt)
637
- * @param order Sort order of the response, ascending or descending. (default to desc)
636
+ * @param sort Property by which to sort the list of authentications. (default to AuthenticationSortKeys. createdAt)
637
+ * @param order Sort order of the response, ascending or descending. (default to OrderKeys. desc)
638
638
* @param requestOptions additional request configuration.
639
639
*/
640
640
public suspend fun listAuthentications (itemsPerPage : Int? = null, page : Int? = null, type : List <AuthenticationType >? = null, platform : List <PlatformWithNone >? = null, sort : AuthenticationSortKeys ? = null, order : OrderKeys ? = null, requestOptions : RequestOptions ? = null): ListAuthenticationsResponse {
@@ -668,8 +668,8 @@ public class IngestionClient(
668
668
* @param type Destination type.
669
669
* @param authenticationID Authentication ID used by destinations.
670
670
* @param transformationID Get the list of destinations used by a transformation.
671
- * @param sort Property by which to sort the destinations. (default to createdAt)
672
- * @param order Sort order of the response, ascending or descending. (default to desc)
671
+ * @param sort Property by which to sort the destinations. (default to DestinationSortKeys. createdAt)
672
+ * @param order Sort order of the response, ascending or descending. (default to OrderKeys. desc)
673
673
* @param requestOptions additional request configuration.
674
674
*/
675
675
public suspend fun listDestinations (itemsPerPage : Int? = null, page : Int? = null, type : List <DestinationType >? = null, authenticationID : List <String >? = null, transformationID : String? = null, sort : DestinationSortKeys ? = null, order : OrderKeys ? = null, requestOptions : RequestOptions ? = null): ListDestinationsResponse {
@@ -705,7 +705,7 @@ public class IngestionClient(
705
705
* @param status Event status for filtering the list of task runs.
706
706
* @param type Event type for filtering the list of task runs.
707
707
* @param sort Property by which to sort the list of task run events.
708
- * @param order Sort order of the response, ascending or descending. (default to desc)
708
+ * @param order Sort order of the response, ascending or descending. (default to OrderKeys. desc)
709
709
* @param startDate Date and time in RFC 3339 format for the earliest events to retrieve. By default, the current time minus three hours is used.
710
710
* @param endDate Date and time in RFC 3339 format for the latest events to retrieve. By default, the current time is used.
711
711
* @param requestOptions additional request configuration.
@@ -744,8 +744,8 @@ public class IngestionClient(
744
744
* @param status Run status for filtering the list of task runs.
745
745
* @param type Run type for filtering the list of task runs.
746
746
* @param taskID Task ID for filtering the list of task runs.
747
- * @param sort Property by which to sort the list of task runs. (default to createdAt)
748
- * @param order Sort order of the response, ascending or descending. (default to desc)
747
+ * @param sort Property by which to sort the list of task runs. (default to RunSortKeys. createdAt)
748
+ * @param order Sort order of the response, ascending or descending. (default to OrderKeys. desc)
749
749
* @param startDate Date in RFC 3339 format for the earliest run to retrieve. By default, the current day minus seven days is used.
750
750
* @param endDate Date in RFC 3339 format for the latest run to retrieve. By default, the current day is used.
751
751
* @param requestOptions additional request configuration.
@@ -783,8 +783,8 @@ public class IngestionClient(
783
783
* @param page Page number of the paginated API response.
784
784
* @param type Source type. Some sources require authentication.
785
785
* @param authenticationID Authentication IDs of the sources to retrieve. 'none' returns sources that doesn't have an authentication.
786
- * @param sort Property by which to sort the list of sources. (default to createdAt)
787
- * @param order Sort order of the response, ascending or descending. (default to desc)
786
+ * @param sort Property by which to sort the list of sources. (default to SourceSortKeys. createdAt)
787
+ * @param order Sort order of the response, ascending or descending. (default to OrderKeys. desc)
788
788
* @param requestOptions additional request configuration.
789
789
*/
790
790
public suspend fun listSources (itemsPerPage : Int? = null, page : Int? = null, type : List <SourceType >? = null, authenticationID : List <String >? = null, sort : SourceSortKeys ? = null, order : OrderKeys ? = null, requestOptions : RequestOptions ? = null): ListSourcesResponse {
@@ -822,8 +822,8 @@ public class IngestionClient(
822
822
* @param destinationID Destination IDs for filtering the list of tasks.
823
823
* @param triggerType Type of task trigger for filtering the list of tasks.
824
824
* @param withEmailNotifications If specified, the response only includes tasks with notifications.email.enabled set to this value.
825
- * @param sort Property by which to sort the list of tasks. (default to createdAt)
826
- * @param order Sort order of the response, ascending or descending. (default to desc)
825
+ * @param sort Property by which to sort the list of tasks. (default to TaskSortKeys. createdAt)
826
+ * @param order Sort order of the response, ascending or descending. (default to OrderKeys. desc)
827
827
* @param requestOptions additional request configuration.
828
828
*/
829
829
public suspend fun listTasks (itemsPerPage : Int? = null, page : Int? = null, action : List <ActionType >? = null, enabled : Boolean? = null, sourceID : List <String >? = null, sourceType : List <SourceType >? = null, destinationID : List <String >? = null, triggerType : List <TriggerType >? = null, withEmailNotifications : Boolean? = null, sort : TaskSortKeys ? = null, order : OrderKeys ? = null, requestOptions : RequestOptions ? = null): ListTasksResponse {
@@ -865,8 +865,8 @@ public class IngestionClient(
865
865
* @param sourceID Source IDs for filtering the list of tasks.
866
866
* @param destinationID Destination IDs for filtering the list of tasks.
867
867
* @param triggerType Type of task trigger for filtering the list of tasks.
868
- * @param sort Property by which to sort the list of tasks. (default to createdAt)
869
- * @param order Sort order of the response, ascending or descending. (default to desc)
868
+ * @param sort Property by which to sort the list of tasks. (default to TaskSortKeys. createdAt)
869
+ * @param order Sort order of the response, ascending or descending. (default to OrderKeys. desc)
870
870
* @param requestOptions additional request configuration.
871
871
*/
872
872
public suspend fun listTasksV1 (itemsPerPage : Int? = null, page : Int? = null, action : List <ActionType >? = null, enabled : Boolean? = null, sourceID : List <String >? = null, destinationID : List <String >? = null, triggerType : List <TriggerType >? = null, sort : TaskSortKeys ? = null, order : OrderKeys ? = null, requestOptions : RequestOptions ? = null): ListTasksResponseV1 {
@@ -900,8 +900,8 @@ public class IngestionClient(
900
900
* - editSettings
901
901
* @param itemsPerPage Number of items per page. (default to 10)
902
902
* @param page Page number of the paginated API response.
903
- * @param sort Property by which to sort the list of transformations. (default to createdAt)
904
- * @param order Sort order of the response, ascending or descending. (default to desc)
903
+ * @param sort Property by which to sort the list of transformations. (default to TransformationSortKeys. createdAt)
904
+ * @param order Sort order of the response, ascending or descending. (default to OrderKeys. desc)
905
905
* @param type Whether to filter the list of transformations by the type of transformation.
906
906
* @param requestOptions additional request configuration.
907
907
*/
0 commit comments