# AdditionalDocumentReference

```csharp
    public class AdditionalDocumentReferenceDto
    {
        public string ID { get; set; }
        public DateTime? IssueDate { get; set; }
        public string DocumentType { get; set; }
        public string DocumentTypeCode { get; set; }
        public string DocumentDescription { get; set; }
        public AttachmentDto Attachment { get; set; }
    }
```

```csharp
    public class AttachmentDto
    {
        public string Base64Data { get; set; }
        public string MimeCode { get; set; }
        public string FileName { get; set; }
    }
```

### ID

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

> Alıcının adres bilgisinin girileceği alandır.

### IssueDate

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

> Bu alana irsaliye tarihi ve saati girilir.

### DocumentType

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

> Alıcının şehir bilgisinin girileceği alandır.

### DocumentTypeCode

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

> Alıcının ülke bilgisinin girileceği alandır.

### DocumentDescription

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

> Alıcının posta kodunun girileceği alandır.

### Base64Date

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

> Alıcının telefon numarasının girileceği alandır.

### MimeCode

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

> Alıcının fax bilgisi girilir.

### FileName

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

> Alıcının mail bilgisi girilir
