@@ -633,8 +633,8 @@ public class IngestionClient(
633633 * @param page Page number of the paginated API response.
634634 * @param type Type of authentication resource to retrieve.
635635 * @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)
638638 * @param requestOptions additional request configuration.
639639 */
640640 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(
668668 * @param type Destination type.
669669 * @param authenticationID Authentication ID used by destinations.
670670 * @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)
673673 * @param requestOptions additional request configuration.
674674 */
675675 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(
705705 * @param status Event status for filtering the list of task runs.
706706 * @param type Event type for filtering the list of task runs.
707707 * @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)
709709 * @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.
710710 * @param endDate Date and time in RFC 3339 format for the latest events to retrieve. By default, the current time is used.
711711 * @param requestOptions additional request configuration.
@@ -744,8 +744,8 @@ public class IngestionClient(
744744 * @param status Run status for filtering the list of task runs.
745745 * @param type Run type for filtering the list of task runs.
746746 * @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)
749749 * @param startDate Date in RFC 3339 format for the earliest run to retrieve. By default, the current day minus seven days is used.
750750 * @param endDate Date in RFC 3339 format for the latest run to retrieve. By default, the current day is used.
751751 * @param requestOptions additional request configuration.
@@ -783,8 +783,8 @@ public class IngestionClient(
783783 * @param page Page number of the paginated API response.
784784 * @param type Source type. Some sources require authentication.
785785 * @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)
788788 * @param requestOptions additional request configuration.
789789 */
790790 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(
822822 * @param destinationID Destination IDs for filtering the list of tasks.
823823 * @param triggerType Type of task trigger for filtering the list of tasks.
824824 * @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)
827827 * @param requestOptions additional request configuration.
828828 */
829829 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(
865865 * @param sourceID Source IDs for filtering the list of tasks.
866866 * @param destinationID Destination IDs for filtering the list of tasks.
867867 * @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)
870870 * @param requestOptions additional request configuration.
871871 */
872872 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(
900900 * - editSettings
901901 * @param itemsPerPage Number of items per page. (default to 10)
902902 * @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)
905905 * @param type Whether to filter the list of transformations by the type of transformation.
906906 * @param requestOptions additional request configuration.
907907 */
0 commit comments