cecon-interfaces
Version:
Interfaces de Projetos Cecon
10 lines (9 loc) • 322 B
TypeScript
import { ITransactionPayer } from '../interfaces/i-payer';
export declare class TransactionPayerEntity implements ITransactionPayer {
account: string | null;
bank: string | null;
branch: string | null;
name: string | null;
doc: string | null;
constructor(data?: Partial<TransactionPayerEntity>);
}