/* Options: Date: 2026-05-19 09:52:09 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: UpdatePOSIdentity.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class UpdatePOSIdentityResponse { public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/posIdentity", "PUT") export class UpdatePOSIdentity implements IReturn { /** @description Point of Sale Code */ // @ApiMember(Description="Point of Sale Code", IsRequired=true) public posCode: string; /** @description Friendly name of the POS, max length 160 characters */ // @ApiMember(Description="Friendly name of the POS, max length 160 characters") public friendlyName: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'UpdatePOSIdentity'; } public getMethod() { return 'PUT'; } public createResponse() { return new UpdatePOSIdentityResponse(); } }