/* Options: Date: 2026-05-19 10:59:13 SwiftVersion: 5.0 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: UpdatePOSIdentity.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/posIdentity", "PUT") public class UpdatePOSIdentity : IReturn, Codable { public typealias Return = UpdatePOSIdentityResponse /** * Point of Sale Code */ // @ApiMember(Description="Point of Sale Code", IsRequired=true) public var posCode:String /** * Friendly name of the POS, max length 160 characters */ // @ApiMember(Description="Friendly name of the POS, max length 160 characters") public var friendlyName:String required public init(){} } public class UpdatePOSIdentityResponse : Codable { required public init(){} }