scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
19 lines (18 loc) • 589 B
TypeScript
import { PaymentProviderAgentEntity } from './payment-provider-agent.entity';
import { PaymentTokenEntity } from './payment-token.entity';
export declare class PaymentProviderEntity {
accountId: string;
active: boolean;
agent: PaymentProviderAgentEntity;
customerId: string;
liveApiToken: string;
name: string;
paymentTokens: PaymentTokenEntity[];
subscriptionId: string;
subscriptions?: string;
testApiToken: string;
userApiToken: string;
verified: boolean;
verifiedAt: number;
constructor(data?: Partial<PaymentProviderEntity>);
}