// 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.helpers import com.olo.olopay.data.CardField fun toRNCardField(field: CardField): String { return when (field) { CardField.CardNumber -> "number" CardField.Expiration -> "expiration" CardField.Cvv -> "cvv" CardField.PostalCode -> "postalCode" } }