cecon-interfaces
Version:
Interfaces de Projetos Cecon
15 lines (14 loc) • 440 B
TypeScript
import { IDesenfilaMerchantV2PaymentProviderAgent } from './i-merchant-payment-provider-agent';
export interface IDesenfilaMerchantV2PaymentProvider {
accountId: string;
active: boolean;
agent: IDesenfilaMerchantV2PaymentProviderAgent;
customerId: string;
liveApiToken: string;
name: string;
subscriptionId: string;
testApiToken: string;
userToken: string;
verified: boolean;
verifiedAt: Date;
}