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