/* Options: Date: 2026-05-19 10:45:17 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetContactMethods.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/contactMethods", Verbs="GET") public static class GetContactMethods implements IReturn { private static Object responseType = GetContactMethodsResponse.class; public Object getResponseType() { return responseType; } } public static class GetContactMethodsResponse extends ArrayList { } public static class ContactMethod { /** * Contact method description */ @ApiMember(Description="Contact method description", IsRequired=true) public String contactMethod = null; public String getContactMethod() { return contactMethod; } public ContactMethod setContactMethod(String value) { this.contactMethod = value; return this; } } }