rn-yookassa
Version:
React Native YooKassa Module SDK Integration.
17 lines (16 loc) • 514 B
TypeScript
import type { PaymentMethodTypesEnum, GooglePaymentMethodTypesEnum } from '.';
export interface TokenizationParams {
clientApplicationKey: string;
shopId: string;
title: string;
subtitle: string;
price: number;
paymentMethodTypes?: PaymentMethodTypesEnum[];
authCenterClientId?: string;
userPhoneNumber?: string;
gatewayId?: string;
returnUrl?: string;
googlePaymentMethodTypes?: GooglePaymentMethodTypesEnum[];
applePayMerchantId?: string;
isDebug?: boolean;
}