/* Options: Date: 2026-05-19 10:46:35 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UpdatePOSIdentity.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/posIdentity", Verbs="PUT") open class UpdatePOSIdentity : IReturn { /** * Point of Sale Code */ @ApiMember(Description="Point of Sale Code", IsRequired=true) var posCode:String? = null /** * Friendly name of the POS, max length 160 characters */ @ApiMember(Description="Friendly name of the POS, max length 160 characters") var friendlyName:String? = null companion object { private val responseType = UpdatePOSIdentityResponse::class.java } override fun getResponseType(): Any? = UpdatePOSIdentity.responseType } open class UpdatePOSIdentityResponse { }