scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
18 lines (17 loc) • 494 B
TypeScript
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;
}