// Copyright © 2022 Olo Inc. All rights reserved.
// This software is made available under the Olo Pay SDK License (See LICENSE.md file)
//
//  OPCvvUpdateTokenProtocolExtensions.swift
//  OlopaysdkReactNative
//
//  Created by Richard Dowdy on 9/6/23.
//  Copyright © 2023 Facebook. All rights reserved.
//

import Foundation
import OloPaySDK

extension OPCvvUpdateTokenProtocol {
    public func toDictionary() -> [String: Any] {
        return [
            DataKeys.IDKey: self.id,
            DataKeys.ProductionEnvironmentKey: self.environment == OPEnvironment.production
        ]
    }
}
