UNPKG

scheunemann-interfaces

Version:
18 lines (17 loc) 494 B
import { IPaymentProviderAgent } from './i-payment-provider-agent'; import { IPaymentToken } from './i-payment-token'; export interface IPaymentProvider { accountId: string; active: boolean; agent: IPaymentProviderAgent; customerId: string; liveApiToken: string; name: string; paymentTokens: IPaymentToken[]; subscriptionId: string; subscriptions?: string; testApiToken: string; userApiToken: string; verified: boolean; verifiedAt: number; }