/* Options: Date: 2026-08-27 07:10:43 Version: 10.08 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: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.* import java.util.* import java.io.InputStream 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) open var brand:String? = null /** * Public key of the file in cloud server */ @ApiMember(Description="Public key of the file in cloud server", IsRequired=true) open var externalFileId:String? = null /** * Type of import e.g. 'SelloutAndCustomer', 'Sellout' */ @ApiMember(Description="Type of import e.g. 'SelloutAndCustomer', 'Sellout'", IsRequired=true) @SerializedName("type") open 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") open 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) open var asyncTaskId:UUID? = null }