/* Options: Date: 2026-05-19 10:46:35 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ImportRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.* import java.util.* import net.servicestack.client.* import com.google.gson.annotations.* import com.google.gson.reflect.* @Route(Path="/tasks/{brand}/importrequest", Verbs="POST") open class ImportRequest : IReturn { /** * Brand Trigram, e.g. CAR, IWC */ @ApiMember(Description="Brand Trigram, e.g. CAR, IWC", IsRequired=true) var brand:String? = null /** * Public key of the file in cloud server */ @ApiMember(Description="Public key of the file in cloud server", IsRequired=true) var externalFileId:String? = null /** * Type of import e.g. 'SelloutAndCustomer', 'Sellout' */ @ApiMember(Description="Type of import e.g. 'SelloutAndCustomer', 'Sellout'", IsRequired=true) @SerializedName("type") var Type:String? = null /** * B2 document reference to link the file with the Salesforce record */ @ApiMember(Description="B2 document reference to link the file with the Salesforce record") var downloadRequestId:String? = null companion object { private val responseType = ImportRequestResponse::class.java } override fun getResponseType(): Any? = ImportRequest.responseType } open class ImportRequestResponse { /** * Unique Identifier of the Import Sell-Out and Customer request created */ @ApiMember(Description="Unique Identifier of the Import Sell-Out and Customer request created", IsRequired=true) var asyncTaskId:UUID? = null }