# OrderReference

```csharp
    public class OrderReferenceDto
    {
        public string ID { get; set; }
        public DateTime? IssueDate { get; set; }
        public AdditionalDocumentReferenceDto DocumentReference { get; set; }

    }
```

```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; }
    }
```

### 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>

> Alıcının ilçe bilgisinin girileceği alandır.

### City

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

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

### Country

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

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

### PostalCode

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

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

### Phone

<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.

### Fax

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

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

### Mail

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

> Alıcının mail bilgisi girilir

### WebSite

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

> Alıcının web site bilgisi girilir
