mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
17 lines (16 loc) • 568 B
TypeScript
import { ICompanyPaymentProviderAgent } from './i-company-payment-provider-agent';
import { ICompanyPaymentProviderPaymentMethod } from './i-company-payment-providers-payments-method';
export interface ICompanyPaymentProvider {
accountId: string;
active: boolean;
agent: ICompanyPaymentProviderAgent;
customerId: string;
liveApiToken: string;
name: string;
paymentsMethods: ICompanyPaymentProviderPaymentMethod[];
subscriptionId: string;
testApiToken: string;
userToken: string;
verified: boolean;
verifiedAt: number;
}