Class NSQuoteVersionAttachment

Attachment documents for a given version of a Quote.

Constructors

NSQuoteVersionAttachment()

Initializes a new instance of the NSQuoteVersionAttachment class.

Declaration

NSQuoteVersionAttachment

Methods

GetDocumentId()

Declaration

Integer GetDocumentId()

Examples

NSQuoteVersionAttachment thing;
Integer documentId = thing.GetDocumentId();

Returns

Type Description
Integer Link to document.

GetIncluded()

Declaration

Bool GetIncluded()

Examples

NSQuoteVersionAttachment thing;
Bool included = thing.GetIncluded();

Returns

Type Description
Bool Will this attachment be included in the next 'Send Quote' operation.

SetDocumentId(Integer)

Declaration

Void SetDocumentId(Integer documentId)

Examples

NSQuoteVersionAttachment thing;
Integer documentId;
thing.SetDocumentId(documentId);

Parameters

Type Name Description
Integer documentId Link to document.

Returns

Type Description
Void

SetIncluded(Bool)

Declaration

Void SetIncluded(Bool included)

Examples

NSQuoteVersionAttachment thing;
Bool included;
thing.SetIncluded(included);

Parameters

Type Name Description
Bool included Will this attachment be included in the next 'Send Quote' operation.

Returns

Type Description
Void