// 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.digitalwalletbutton.events import com.olopaysdkreactnative.data.DataKeys import com.olopaysdkreactnative.events.OloPayEvent class DigitalWalletButtonClickedEvent constructor( surfaceId: Int, reactTag: Int ): OloPayEvent(surfaceId, reactTag) { override fun getEventName(): String { return NAME } companion object { const val NAME = DataKeys.DigitalWalletButtonClickedEventName } }