(* Options: Date: 2026-05-19 09:49:24 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetTask.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Richemont.Booster2.PublicApi.NightlyProcess.ServiceModel open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type Task() = /// ///Async task ID /// [] member val asyncTaskId:Guid = new Guid() with get,set /// ///Type of requested async task, e.g 'stock', 'sellout', 'crm' /// [] member val type:String = null with get,set /// ///Async task creation date /// [] member val requestDate:String = null with get,set /// ///Status of requested async task, e.g 'REQ', 'INP', 'COM', 'ERR' /// [] member val status:String = null with get,set /// ///Percentage of completion /// [] member val percentage:Int32 = new Int32() with get,set /// ///Brand Trigram /// [] member val brand:String = null with get,set /// ///Download url of created files /// [] member val downloadUrl:String = null with get,set /// ///Presigned expiring download url /// [] member val signedDownloadUrl:String = null with get,set /// ///Total count of operations /// [] member val totalResults:Nullable = new Nullable() with get,set /// ///Count of successful operations /// [] member val totalSucceeded:Nullable = new Nullable() with get,set /// ///Count of failed operations /// [] member val totalFailed:Nullable = new Nullable() with get,set [] type GetTaskResponse() = inherit ResizeArray() [] [] type GetTask() = interface IReturn