rn-yookassa
Version:
React Native YooKassa Module SDK Integration.
19 lines (17 loc) • 542 B
text/typescript
import type { PaymentMethodTypesEnum, GooglePaymentMethodTypesEnum } from '.';
export interface TokenizationParams {
clientApplicationKey: string;
shopId: string;
title: string;
subtitle: string;
// TODO: currency
price: number;
paymentMethodTypes?: PaymentMethodTypesEnum[];
authCenterClientId?: string; // ! If YooMoney method selected
userPhoneNumber?: string;
gatewayId?: string;
returnUrl?: string;
googlePaymentMethodTypes?: GooglePaymentMethodTypesEnum[];
applePayMerchantId?: string;
isDebug?: boolean;
}