UNPKG

react-native-unit-components

Version:

Unit React Native components

59 lines 1.7 kB
export declare enum UNPaymentType { AchPayment = "achPayment", BookPayment = "bookPayment", CardToCardPayment = "cardToCardPayment", WirePayment = "wirePayment" } export type UNPaymentStatus = 'Sent' | 'Rejected' | 'Pending' | 'Clearing' | 'Canceled' | 'Returned' | 'PendingReview'; export type UNAchCounterparty = { name: string; accountNumber: string; routingNumber: string; accountType: UNCounterpartyAccountType; }; export type UNCounterpartyAccountType = 'Savings' | 'Checking'; export declare enum UNCounterpartyType { Business = "Business", Person = "Person", Unknown = "Unknown" } export type UNCounterpartyPermission = 'CreditOnly' | 'CreditAndDebit' | 'DebitOnly'; export declare enum UNConnectedAccountStatus { Pending = "Pending", Failed = "Failed", Verified = "Verified" } export declare enum UNConnectionAccountType { SameDayMicroDeposit = "SameDayMicroDeposit", Instant = "Instant" } export declare enum UNPlaidAccountFilter { checking = "checking", savings = "savings" } export declare enum UNCounterpartyVerificationMethod { Plaid = "Plaid" } export declare enum UNCardNetwork { Visa = "Visa", Diners = "Diners", Maestro = "Maestro", Generic = "Generic", Discover = "Discover", MasterCard = "MasterCard", AmericanExpress = "AmericanExpress" } export interface UNAstraExternalCardData { type: 'astraExternalCard'; id: string; attributes: { last4Digits: string; cardNetwork: UNCardNetwork; fullName: { first: string; last: string; }; }; } export type Cents = number; //# sourceMappingURL=payments.types.d.ts.map