/* Options: Date: 2025-12-05 23:59:30 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://staging-api.my1stchoicefs.net //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AuctionFloorVehicle.* //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.* open class AuctionFloorVehicle : IReturn { @ApiMember(IsRequired=true) open var BOSDate:Date? = null @ApiMember(IsRequired=true) open var DealerId:UUID? = null /** * Must be 17 characters */ @ApiMember(Description="Must be 17 characters", IsRequired=true) open var Vin:String? = null @ApiMember(IsRequired=true) open var Year:Int? = null @ApiMember(IsRequired=true) open var Make:String? = null @ApiMember(IsRequired=true) open var Model:String? = null @ApiMember(IsRequired=true) open var Miles:Int? = null @ApiMember(IsRequired=true) open var Color:String? = null @ApiMember(IsRequired=true) open var BOSAmount:Double? = null @ApiMember() open var TitleNumber:String? = null @ApiMember() open var TitleState:String? = null companion object { private val responseType = GenericResponse::class.java } override fun getResponseType(): Any? = AuctionFloorVehicle.responseType } open class GenericResponse { open var Message:String? = null open var Success:Boolean? = null }