Table of Contents

Class InvoiceData

Namespace
AiDotNet.Postprocessing.Document
Assembly
AiDotNet.dll

Structured invoice data extracted from documents.

public class InvoiceData
Inheritance
InvoiceData
Inherited Members

Properties

Customer

Customer/buyer name.

public string? Customer { get; set; }

Property Value

string

Date

Invoice date.

public DateTime? Date { get; set; }

Property Value

DateTime?

InvoiceNumber

Invoice number.

public string? InvoiceNumber { get; set; }

Property Value

string

LineItems

Line items.

public List<InvoiceLineItem> LineItems { get; set; }

Property Value

List<InvoiceLineItem>

Tax

Tax amount.

public decimal? Tax { get; set; }

Property Value

decimal?

Total

Total amount.

public decimal? Total { get; set; }

Property Value

decimal?

Vendor

Vendor/seller name.

public string? Vendor { get; set; }

Property Value

string