/* Options: Date: 2026-06-14 22:02:13 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://qp-microservices-booster.richemont.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetCustomerSuggestion.* //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="/warranty/v1/GetCustomerSuggestion", Verbs="POST") open class GetCustomerSuggestion : BaseRequest(), IReturn { var emailAddress:String? = null var posId:Int? = null var brandTrigram:String? = null var phoneNumber:String? = null var prefixCountryId:String? = null var countryId:String? = null companion object { private val responseType = GetCustomerSuggestionResponse::class.java } override fun getResponseType(): Any? = GetCustomerSuggestion.responseType } open class GetCustomerSuggestionResponse : BaseResponse() { var customerType:String? = null var customerRef:String? = null var title:Int? = null var titleDs:String? = null var firstName:String? = null var lastName:String? = null var firstNameNotLatin:String? = null var lastNameNotLatin:String? = null var birthday:String? = null var birthDayEventId:UUID? = null var weddingDate:String? = null var canBeContacted:Boolean? = null var seller:UUID? = null var language:String? = null var languageDs:String? = null var nameSuffix:String? = null var gender:String? = null var companyName:String? = null var middleName:String? = null var customerId:UUID? = null var personId:UUID? = null var boosterCustomerId:Int? = null var posOwnerId:Int? = null var brandOwnerId:String? = null var businessUnitId:Int? = null var sapGenderId:String? = null var allowStoreDataAbroad:Boolean? = null var privacyPolicyAcceptanceStorage:Boolean? = null var tvAllowStoreDataAbroad:Boolean? = null var tvPrivacyPolicyAcceptanceStorage:Boolean? = null var contactByMail:Boolean? = null var contactByEmail:Boolean? = null var contactByPhone:Boolean? = null var contactBySMS:Boolean? = null var contactBySocialMedia:Boolean? = null var addresses:ArrayList = ArrayList() var emails:ArrayList = ArrayList() var phones:ArrayList = ArrayList() var ResponseStatus:ResponseStatus? = null } open class BaseRequest : IRequest { var sid:String? = null var app:String? = null var _os:String? = null var _appVersion:String? = null var _searchMethod:String? = null } open interface IRequest { var sid:String? var app:String? } open class BaseResponse : IRespose { var _xmlns:String? = null var _type:String? = null var _source:String? = null var _tstamp:String? = null var _user:String? = null var _env:String? = null var _uri:String? = null var _query:String? = null } open interface IRespose { var _xmlns:String? var _type:String? var _source:String? var _tstamp:String? var _user:String? var _env:String? var _uri:String? var _query:String? } open class CustomerAddress { var addressId:UUID? = null var description:String? = null var addressLine1:String? = null var addressLine2:String? = null var addressLine3:String? = null var addressLine4:String? = null var addressLine5:String? = null var houseNumber:String? = null var city:String? = null var region:String? = null var county:String? = null var stateOrProvinceId:String? = null var countryId:String? = null var countryDs:String? = null var zipCode:String? = null var addressTypeId:String? = null var isMailingAddress:Boolean? = null var isMainAddress:Boolean? = null } open class CustomerEmail { var emailId:UUID? = null var description:String? = null var email:String? = null var isMainEmail:Boolean? = null @SerializedName("type") var Type:Lookup? = null } open class CustomerPhone { var phoneId:UUID? = null var description:String? = null var phone:String? = null var isMainPhone:Boolean? = null var prefixCountryId:String? = null var telephonePrefix:String? = null @SerializedName("type") var Type:Lookup? = null } open class Lookup { var Id:T? = null var Description:String? = null }