// Copyright © 2022 Olo Inc. All rights reserved. // This software is made available under the Olo Pay SDK License (See LICENSE.md file) package com.olopaysdkreactnative.events import com.olopaysdkreactnative.data.DataKeys class FocusReceivedEvent constructor( surfaceId: Int, reactTag: Int ): OloPayEvent(surfaceId, reactTag) { override fun getEventName(): String { return Name } companion object { const val Name = DataKeys.FocusEventName } }