Interface CreateVoucherDto

interface CreateVoucherDto {
    attention?: boolean;
    contraEntry?: CreateVoucherContraEntryDto;
    date: string;
    dimensions?: string[];
    entries: CreateVoucherEntryDto[];
    note?: string;
    origin?: object;
    partner?: CreateVoucherPartnerDto;
    status: VoucherStatus;
    title?: string;
    type: VoucherType;
}

Properties

attention?: boolean
date: string
dimensions?: string[]
note?: string
origin?: object
title?: string