/* Options: Date: 2025-05-05 18:41:18 Version: 8.61 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://prod-api-agency-orch-mb-dhc.rapp-customers.co.uk //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CarConfiguratorRequest.* //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="/v1/configurator", Verbs="POST") open class CarConfiguratorRequest : IReturn, IPost { /** * Configurator code */ @ApiMember(Description="Configurator code", IsRequired=true) open var ConfiguratorCode:String? = null companion object { private val responseType = CarConfiguratorResponse::class.java } override fun getResponseType(): Any? = CarConfiguratorRequest.responseType } open class CarConfiguratorResponse { open var Name:String? = null open var KeyInformation:KeyInformation? = null open var OrderingOptions:OrderingOptions? = null open var ResponseStatus:ResponseStatus? = null open var ConfiguratorCode:String? = null } open class KeyInformation { open var BM7NST:String? = null open var ConfigurationDate:String? = null open var ModelYear:String? = null open var HalfYear:String? = null } open class OrderingOptions { open var Interior:ArrayList? = null open var Exterior:ArrayList? = null open var Other:ArrayList? = null }