# 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;">`Compulsory`</mark>

> This is the field where the recipient's address information will be entered.

### IssueDate

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

> This is the field where the recipient's district information is entered.

### City

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

> This is the field where the recipient's city information is entered.

### Country

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

> This is the field where the recipient's country information is entered.

### PostalCode

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

> This is the field where the recipient's postal code is entered.

### Phone

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

> This is the field where the recipient's phone number will be entered.

### Fax

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

> The recipient's fax information is entered.

### Mail

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

> Recipient's e-mail information is entered

### WebSite

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

> Recipient's website information is entered
