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;
}
