> For the complete documentation index, see [llms.txt](https://developer.nilvera.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.nilvera.com/nilvera-model/edespatch/despatchlines.md).

# DespatchLines

> İrsaliye kalemlerinin(Mal / Hizmet) tüm detaylarının girileceği alandır.

```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;">`Seçimli`</mark>

> Sonradan gönderilecek ürünün birim tipinin girileceği alandır.

### DeliveredUnitName

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Seçimli`</mark>

> Sonradan gönderilecek ürünün adının girileceği alandır.

### Name

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Seçimli`</mark>

> Ürünün adının girileceği alandır.

### SellerCode

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

> Ürünün satıcı kodunun girileceği alandır.

### BuyerCode

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Seçimli`</mark>

> Ürünün alıcı kodunun girileceği alandır.

### Description

<mark style="color:blue;">`decimal`</mark>  <mark style="color:orange;">`Seçimli`</mark>

> Ürünün açıklamasının girileceği alandır.

### DeliveredQuantity

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Seçimli`</mark>

> Sonradan gönderilecek ürünün miktarının girileceği alandır.

### QuantityPrice

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

> Birim fiyatın girileceği alandır.

### LineTotal

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

> Satır toplamının girileceği alandır.

### AditionalItemIdentification

<mark style="color:blue;">`decimal`</mark>  <mark style="color:orange;">`Seçimli`</mark>

> Ek ürün tanımlamasının girileceği alandır.

### OutstandingQuantity

<mark style="color:blue;">`decimal`</mark>  <mark style="color:orange;">`Seçimli`</mark>

> Sonradan Gönderilecek ürünün miktarının girileceği alandır.

### OutstandingUnitType

<mark style="color:blue;">`List`</mark>  <mark style="color:orange;">`Seçimli`</mark>

> Sonradan Gönderilecek ürünün biriminin girileceği alandır.

### OutstandingUnitName

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Seçimli`</mark>

> Sonradan Gönderilecek ürünün adının girileceği alandır.

### OutstandingReason

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Seçimli`</mark>

> Sonradan Gönderilme nedeninin girileceği alandır.

### ManufacturerCode

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Seçimli`</mark>

> Üretici kodunun girileceği alandır.

### BrandName

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Seçimli`</mark>

> Marka adının girileceği alandır.

### ModelName

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Seçimli`</mark>

> Model adının girileceği alandır.

### LabelNumber

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

> IDISIRSALIYE (İnşaat Demiri İzleme Sistemi) senaryosunda etiket numarası bu alana girilir.&#x20;

{% hint style="info" %}
Etiket numarası 2 harf ve ardından 7 rakamdan oluşmalıdır. (Örneğin; AC1234567)
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

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

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
