# DespatchLines

> This is the field where all details of the items (Goods / Services) in the waybill will be entered.

```csharp
    public class DespatchLineDto
    {
        public string DeliveredUnitType { get; set; } 
        public string DeliveredUnitName { get; set; }
        public string Name { get; set; }
        public string SellerCode { get; set; }
        public string BuyerCode { get; set; }
        public string Description { get; set; }
        public decimal DeliveredQuantity { get; set; }
        public decimal QuantityPrice { get; set; } 
        public decimal LineTotal { get; set; } 
        public string AdditionalItemIdentification { get; set; }
        public decimal OutstandingQuantity { get; set; }
        public string OutstandingUnitType { get; set; }
        public string OutstandingUnitName { get; set; }
        public string OutstandingReason { get; set; } 
        public string ManufacturerCode { get; set; }
        public string BrandName { get; set; }
        public string ModelName { get; set; }
        public string LabelNumber { get; set; }
    }
```

### DeliveredUnitType

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Optional`</mark>

> This is the field where the unit type of the product to be sent later will be entered.

### DeliveredUnitName

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Optional`</mark>

> This is the field where the name of the product to be sent later will be entered.

### Name

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Optional`</mark>

> This is the field where the name of the product will be entered.

### SellerCode

<mark style="color:blue;">`string`</mark>  <mark style="color:red;">`Compulsory`</mark>

> This is the field where the seller code of the product will be entered.

### BuyerCode

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Optional`</mark>

> This is the field where the recipient code of the product will be entered.

### Description

<mark style="color:blue;">`decimal`</mark>  <mark style="color:orange;">`Optional`</mark>

> This is the field where the description of the product will be entered.

### DeliveredQuantity

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Optional`</mark>

> This is the field where the quantity of the product to be sent later will be entered.

### QuantityPrice

<mark style="color:blue;">`string`</mark>  <mark style="color:red;">`Compulsory`</mark>

> This is the field where the unit price will be entered.

### LineTotal

<mark style="color:blue;">`decimal`</mark>  <mark style="color:red;">`Compulsory`</mark>

> This is the field where the line total will be entered.

### AditionalItemIdentification

<mark style="color:blue;">`decimal`</mark>  <mark style="color:orange;">`Optional`</mark>

> This is the field where additional product description will be entered.

### OutstandingQuantity

<mark style="color:blue;">`decimal`</mark>  <mark style="color:orange;">`Optional`</mark>

> This is the field where the quantity of the product to be sent later will be entered.

### OutstandingUnitType

<mark style="color:blue;">`List`</mark>  <mark style="color:orange;">`Optional`</mark>

> This is the field where the unit of the product to be sent later will be entered.

### OutstandingUnitName

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Optional`</mark>

> This is the field where the name of the product to be sent later will be entered.

### OutstandingReason

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Optional`</mark>

> This is the field where the reason for Posting will be entered.

### ManufacturerCode

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Optional`</mark>

> This is the field where the manufacturer code will be entered.r.

### BrandName

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Optional`</mark>

> This is the field where the brand name will be entered.

### ModelName

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Optional`</mark>

> This is the field where the model name will be entered.

### LabelNumber

<mark style="color:blue;">`string`</mark>  <mark style="color:red;">`Zorunlu`</mark>

> In the **IDISIRSALIYE (Construction Steel Monitoring System)** scenario, the label number is entered in this field.

{% hint style="info" %}
The label number must consist of 2 letters followed by 7 digits (e.g., AC1234567).
{% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developer.nilvera.com/en/nilvera-model/edespatch/despatchlines.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
