public override string ToXml() { if (Comments != null) { return(RequestBuilder.BuildXMLElement("comments", Comments)); } if (DocumentUploadId != null) { return(RequestBuilder.BuildXMLElement("document-upload-id", DocumentUploadId)); } return(""); }
internal virtual string BuildXMLElement(string name, object value) { return(RequestBuilder.BuildXMLElement(name, value)); }