' Options: 'Date: 2026-05-19 09:51:28 'Version: 8.22 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://dev-api-booster.richemont.com ' '''GlobalNamespace: '''MakePartial: True '''MakeVirtual: True '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: True '''ExportValueTypes: False 'IncludeTypes: GetTask.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports Richemont.Booster2.PublicApi.NightlyProcess.ServiceModel Namespace Global Namespace Richemont.Booster2.PublicApi.NightlyProcess.ServiceModel Public Partial Class GetTask Implements IReturn(Of GetTaskResponse) End Class Public Partial Class GetTaskResponse Inherits List(Of Task) End Class Public Partial Class Task ''' '''Async task ID ''' Public Overridable Property asyncTaskId As Guid ''' '''Type of requested async task, e.g 'stock', 'sellout', 'crm' ''' Public Overridable Property type As String ''' '''Async task creation date ''' Public Overridable Property requestDate As String ''' '''Status of requested async task, e.g 'REQ', 'INP', 'COM', 'ERR' ''' Public Overridable Property status As String ''' '''Percentage of completion ''' Public Overridable Property percentage As Integer ''' '''Brand Trigram ''' Public Overridable Property brand As String ''' '''Download url of created files ''' Public Overridable Property downloadUrl As String ''' '''Presigned expiring download url ''' Public Overridable Property signedDownloadUrl As String ''' '''Total count of operations ''' Public Overridable Property totalResults As Nullable(Of Integer) ''' '''Count of successful operations ''' Public Overridable Property totalSucceeded As Nullable(Of Integer) ''' '''Count of failed operations ''' Public Overridable Property totalFailed As Nullable(Of Integer) End Class End Namespace End Namespace