/* Options: Date: 2026-08-27 07:10:42 Version: 10.08 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: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream 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) open var posCode:String? = null /** * Friendly name of the POS, max length 160 characters */ @ApiMember(Description="Friendly name of the POS, max length 160 characters") open var friendlyName:String? = null companion object { private val responseType = UpdatePOSIdentityResponse::class.java } override fun getResponseType(): Any? = UpdatePOSIdentity.responseType } open class UpdatePOSIdentityResponse { }