Class DocumentDataArgs
The document GET endpoint won't return DocumentData or EditedText to prevent excessively large amounts of data being transferred each GET. Instead, they will be supplied with these arguments in a separate endpoint.
Inherited Members
Namespace: Quantellia.WMServer.Asset.Model.Document
Assembly: WMServer.dll
Syntax
public class DocumentDataArgs
Properties
DocumentData
A Base-64 encoded string representing the stored document
Declaration
public string DocumentData { get; set; }
Property Value
Type | Description |
---|---|
string |
DocumentEditedText
Stores the text of a document in an editable format. Is not guaranteed to be correct, or exist.
Declaration
public string DocumentEditedText { get; set; }
Property Value
Type | Description |
---|---|
string |