/* Options: Date: 2026-05-19 09:53:12 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: GetGenders.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class Gender { /** @description Gender Id */ // @ApiMember(Description="Gender Id", IsRequired=true) public gender: string; /** @description Gender description */ // @ApiMember(Description="Gender description", IsRequired=true) public genderDs: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GetGendersResponse extends Array { public constructor(init?: Partial) { super(); (Object as any).assign(this, init); } } // @Route("/genders/{brand}/{posCode}", "GET") export class GetGenders implements IReturn { /** @description Brand */ // @ApiMember(Description="Brand", IsRequired=true) public brand: string; /** @description POS Legacy */ // @ApiMember(Description="POS Legacy", IsRequired=true) public posCode: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetGenders'; } public getMethod() { return 'GET'; } public createResponse() { return new GetGendersResponse(); } }