/* Options: Date: 2026-05-19 09:51:36 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetContactMethods.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class ContactMethod { /** @description Contact method description */ // @ApiMember(Description="Contact method description", IsRequired=true) public contactMethod: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GetContactMethodsResponse extends Array { public constructor(init?: Partial) { super(); (Object as any).assign(this, init); } } // @Route("/contactMethods", "GET") export class GetContactMethods implements IReturn { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetContactMethods'; } public getMethod() { return 'GET'; } public createResponse() { return new GetContactMethodsResponse(); } }