BillLines

This is the area where all the details of the items (goods/services) on the bill will be entered.

public class EBillLineDto
{
    public string Name { get; set; }
    public decimal Quantity { get; set; }
    public string UnitType { get; set; }
    public decimal Price { get; set; }
    public decimal KDVPercent { get; set; }
    public decimal KDVTotal { get; set; }
}

Name

string Zorunlu

This is the area where the product name will be entered.

Quantity

decimal Zorunlu

This is the field where the amount will be entered.

UnitType

string Zorunlu

This is the field where the unit type is entered. The possible values ​​are listed under Unit Codes in the code lists section.

Price

string Zorunlu

This is the area where the product price will be entered.

KDVPercent

decimal Seçimli

This is the field where the product's VAT rate will be entered.

circle-info

VAT rates are 1%, 10%, and 20%.

KDVTotal

decimal Seçimli

This is the field where the total VAT amount of the product will be entered.

Last updated