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

> Delivery note date and time are entered in this field.

### DocumentType

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

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

### DocumentTypeCode

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

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

### DocumentDescription

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

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

### Base64Date

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

### MimeCode

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

> The recipient's fax information is entered.

### FileName

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

> Recipient's e-mail information is entered
