@rnw-community/react-native-payments
Version:
Accept Payments with Apple Pay and Android Pay using the Payment Request API.
10 lines (8 loc) • 455 B
text/typescript
import type { GenericPaymentMethodDataDataInterface } from '../../../interface/generic-payment-method-data-data.interface';
import type { IosPKMerchantCapability } from '../enum/ios-pk-merchant-capability.enum';
export interface IosPaymentMethodDataDataInterface extends GenericPaymentMethodDataDataInterface {
applicationData?: string;
countryCode: string;
merchantCapabilities?: IosPKMerchantCapability[];
merchantIdentifier: string;
}