AdditionalDocumentReference

    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; }
    }
    public class AttachmentDto
    {
        public string Base64Data { get; set; }
        public string MimeCode { get; set; }
        public string FileName { get; set; }
    }

ID

string Compulsory

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

IssueDate

string Compulsory

Delivery note date and time are entered in this field.

DocumentType

string Compulsory

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

DocumentTypeCode

string Compulsory

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

DocumentDescription

string Optional

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

Base64Date

string Optional

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

MimeCode

string Optional

The recipient's fax information is entered.

FileName

string Optional

Recipient's e-mail information is entered

Last updated