/* Options: Date: 2026-08-27 08:00:38 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: GetSerialNumberDetails.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/serialnumber/{articleCode}/{serialNumber}", Verbs="GET") open class GetSerialNumberDetails : IReturn { /** * Article Code */ @ApiMember(Description="Article Code", IsRequired=true) open var articleCode:String? = null /** * Serial Number */ @ApiMember(Description="Serial Number", IsRequired=true) open var serialNumber:String? = null /** * POS Code e.g. ES100:102048 */ @ApiMember(Description="POS Code e.g. ES100:102048") open var posCode:String? = null companion object { private val responseType = GetSerialNumberDetailsResponse::class.java } override fun getResponseType(): Any? = GetSerialNumberDetails.responseType } open class GetSerialNumberDetailsResponse { /** * Brand */ @ApiMember(Description="Brand") open var brand:String? = null /** * Article code */ @ApiMember(Description="Article code", IsRequired=true) open var articleCode:String? = null /** * Serial Number */ @ApiMember(Description="Serial Number", IsRequired=true) open var serialNumber:String? = null /** * Article Description */ @ApiMember(Description="Article Description") open var articleDescription:String? = null /** * Warranty Start Date */ @ApiMember(Description="Warranty Start Date") open var warrantyStartDate:String? = null /** * Warranty End Date */ @ApiMember(Description="Warranty End Date") open var warrantyEndDate:String? = null /** * Last Repair Date */ @ApiMember(Description="Last Repair Date") open var lastRepairDate:String? = null /** * Sell In Date */ @ApiMember(Description="Sell In Date") open var sellInDate:String? = null /** * Last Repair Site */ @ApiMember(Description="Last Repair Site") open var lastRepairSite:String? = null /** * Services */ @ApiMember(Description="Services") open var services:ArrayList? = null /** * Enquirus lost or stolen */ @ApiMember(Description="Enquirus lost or stolen") open var lostOrStolenStatus:Boolean? = null /** * Warranty CPO Start Date */ @ApiMember(Description="Warranty CPO Start Date") open var warrantyResaleStartDate:String? = null /** * Warranty CPO End Date */ @ApiMember(Description="Warranty CPO End Date") open var warrantyResaleEndDate:String? = null }