Interface AddTransactionsDto

interface AddTransactionsDto {
    endDate: string;
    entries: TransactionEntryDto[];
    iban: string;
    original?: object;
    startDate: string;
}

Properties

endDate: string
iban: string
original?: object
startDate: string