Class NSQuoteVersionAttachment
Attachment documents for a given version of a Quote.
Syntax
Constructors
NSQuoteVersionAttachment()
Initializes a new instance of the NSQuoteVersionAttachment class.
Declaration
NSQuoteVersionAttachment
Methods
GetDocumentId()
Attachment documents for a given version of a Quote.
Declaration
Integer GetDocumentId()
Returns
Type | Description |
---|---|
Integer | Link to document. |
Examples
NSQuoteVersionAttachment thing;
Integer documentId = thing.GetDocumentId();
GetIncluded()
Attachment documents for a given version of a Quote.
Declaration
Bool GetIncluded()
Returns
Type | Description |
---|---|
Bool | Will this attachment be included in the next 'Send Quote' operation. |
Examples
NSQuoteVersionAttachment thing;
Bool included = thing.GetIncluded();
SetDocumentId(Integer)
Attachment documents for a given version of a Quote.
Declaration
Void SetDocumentId(Integer documentId)
Parameters
Type | Name | Description |
---|---|---|
Integer | documentId | Link to document. |
Returns
Type | Description |
---|---|
Void |
Examples
NSQuoteVersionAttachment thing;
Integer documentId;
thing.SetDocumentId(documentId);
SetIncluded(Bool)
Attachment documents for a given version of a Quote.
Declaration
Void SetIncluded(Bool included)
Parameters
Type | Name | Description |
---|---|---|
Bool | included | Will this attachment be included in the next 'Send Quote' operation. |
Returns
Type | Description |
---|---|
Void |
Examples
NSQuoteVersionAttachment thing;
Bool included;
thing.SetIncluded(included);