UNPKG

cecon-interfaces

Version:
15 lines (14 loc) 440 B
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; }