""" Options: Date: 2026-05-19 09:48:48 Version: 8.22 Tip: To override a DTO option, remove "#" prefix before updating BaseUrl: https://dev-api-booster.richemont.com #GlobalNamespace: #AddServiceStackTypes: True #AddResponseStatus: False #AddImplicitVersion: #AddDescriptionAsComments: True IncludeTypes: UpdatePOSIdentity.* #ExcludeTypes: #DefaultImports: datetime,decimal,marshmallow.fields:*,servicestack:*,typing:*,dataclasses:dataclass/field,dataclasses_json:dataclass_json/LetterCase/Undefined/config,enum:Enum/IntEnum #DataClass: #DataClassJson: """ import datetime import decimal from marshmallow.fields import * from servicestack import * from typing import * from dataclasses import dataclass, field from dataclasses_json import dataclass_json, LetterCase, Undefined, config from enum import Enum, IntEnum @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class UpdatePOSIdentityResponse: pass # @Route("/posIdentity", "PUT") @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class UpdatePOSIdentity(IReturn[UpdatePOSIdentityResponse]): # @ApiMember(Description="Point of Sale Code", IsRequired=true) pos_code: Optional[str] = None """ Point of Sale Code """ # @ApiMember(Description="Friendly name of the POS, max length 160 characters") friendly_name: Optional[str] = None """ Friendly name of the POS, max length 160 characters """