/* Options: Date: 2026-05-19 09:52:01 Version: 8.22 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: GetContactMethods.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/contactMethods", Verbs="GET") open class GetContactMethods : IReturn { companion object { private val responseType = GetContactMethodsResponse::class.java } override fun getResponseType(): Any? = GetContactMethods.responseType } open class GetContactMethodsResponse : ArrayList() { } open class ContactMethod { /** * Contact method description */ @ApiMember(Description="Contact method description", IsRequired=true) var contactMethod:String? = null }