Class NSSuggestedDocumentEntity
Constructors
NSSuggestedDocumentEntity()
Initializes a new instance of the NSSuggestedDocumentEntity class.
Declaration
NSSuggestedDocumentEntity Methods
GetDeleted()
Declaration
Bool GetDeleted() Examples
NSSuggestedDocumentEntity thing;
Bool deleted = thing.GetDeleted();
Returns
| Type | Description |
| Bool | 0 -> record is active 1 -> record is 'deleted' and should not be shown in lists. |
GetDocTmpl()
Declaration
NSDocumentTemplate GetDocTmpl() Examples
NSSuggestedDocumentEntity thing;
NSDocumentTemplate docTmpl = thing.GetDocTmpl();
Returns
| Type | Description |
| NSDocumentTemplate | Document template. |
GetDoctmplId()
Declaration
Integer GetDoctmplId() Examples
NSSuggestedDocumentEntity thing;
Integer doctmplId = thing.GetDoctmplId();
Returns
| Type | Description |
| Integer | Type of the suggested document. |
GetHeader()
Declaration
String GetHeader() Examples
NSSuggestedDocumentEntity thing;
String header = thing.GetHeader();
Returns
| Type | Description |
| String | Suggested 'header' |
GetName()
Declaration
String GetName() Examples
NSSuggestedDocumentEntity thing;
String name = thing.GetName();
Returns
| Type | Description |
| String | Item name, visible in Guide. |
GetOurRef()
Declaration
String GetOurRef() Examples
NSSuggestedDocumentEntity thing;
String ourRef = thing.GetOurRef();
Returns
| Type | Description |
| String | Suggested 'our reference' |
GetProjectTypeStatusLink()
Declaration
NSProjectTypeStatusLink GetProjectTypeStatusLink() Examples
NSSuggestedDocumentEntity thing;
NSProjectTypeStatusLink projectTypeStatusLink = thing.GetProjectTypeStatusLink();
Returns
| Type | Description |
| NSProjectTypeStatusLink | Project type and project status link info. |
GetRank()
Declaration
Integer GetRank() Examples
NSSuggestedDocumentEntity thing;
Integer rank = thing.GetRank();
Returns
| Type | Description |
| Integer | Rank, controls rank of non-instantiated items in Guide. |
GetSaleTypeStageLink()
Declaration
NSSaleTypeStageLink GetSaleTypeStageLink() Examples
NSSuggestedDocumentEntity thing;
NSSaleTypeStageLink saleTypeStageLink = thing.GetSaleTypeStageLink();
Returns
| Type | Description |
| NSSaleTypeStageLink | Sale type and stage link info. |
GetSuggestedDocumentId()
Declaration
Integer GetSuggestedDocumentId() Examples
NSSuggestedDocumentEntity thing;
Integer suggestedDocumentId = thing.GetSuggestedDocumentId();
Returns
| Type | Description |
| Integer | Primary key. |
GetTooltip()
Declaration
String GetTooltip() Examples
NSSuggestedDocumentEntity thing;
String tooltip = thing.GetTooltip();
Returns
| Type | Description |
| String | Tooltip / description. |
SetDeleted(Bool)
Declaration
Void SetDeleted(Bool deleted) Examples
NSSuggestedDocumentEntity thing;
Bool deleted;
thing.SetDeleted(deleted);
Parameters
| Type | Name | Description |
| Bool | deleted | 0 -> record is active 1 -> record is 'deleted' and should not be shown in lists. |
Returns
| Type | Description |
| Void |
SetDocTmpl(NSDocumentTemplate)
Declaration
Void SetDocTmpl(NSDocumentTemplate docTmpl) Examples
NSSuggestedDocumentEntity thing;
NSDocumentTemplate docTmpl;
thing.SetDocTmpl(docTmpl);
Parameters
| Type | Name | Description |
| NSDocumentTemplate | docTmpl | Document template. |
Returns
| Type | Description |
| Void |
SetDoctmplId(Integer)
Declaration
Void SetDoctmplId(Integer doctmplId) Examples
NSSuggestedDocumentEntity thing;
Integer doctmplId;
thing.SetDoctmplId(doctmplId);
Parameters
| Type | Name | Description |
| Integer | doctmplId | Type of the suggested document. |
Returns
| Type | Description |
| Void |
SetHeader(String)
Declaration
Void SetHeader(String header) Examples
NSSuggestedDocumentEntity thing;
String header;
thing.SetHeader(header);
Parameters
| Type | Name | Description |
| String | header | Suggested 'header' |
Returns
| Type | Description |
| Void |
SetName(String)
Declaration
Void SetName(String name) Examples
NSSuggestedDocumentEntity thing;
String name;
thing.SetName(name);
Parameters
| Type | Name | Description |
| String | name | Item name, visible in Guide. |
Returns
| Type | Description |
| Void |
SetOurRef(String)
Declaration
Void SetOurRef(String ourRef) Examples
NSSuggestedDocumentEntity thing;
String ourRef;
thing.SetOurRef(ourRef);
Parameters
| Type | Name | Description |
| String | ourRef | Suggested 'our reference' |
Returns
| Type | Description |
| Void |
SetProjectTypeStatusLink(NSProjectTypeStatusLink)
Declaration
Void SetProjectTypeStatusLink(NSProjectTypeStatusLink projectTypeStatusLink) Examples
NSSuggestedDocumentEntity thing;
NSProjectTypeStatusLink projectTypeStatusLink;
thing.SetProjectTypeStatusLink(projectTypeStatusLink);
Parameters
| Type | Name | Description |
| NSProjectTypeStatusLink | projectTypeStatusLink | Project type and project status link info. |
Returns
| Type | Description |
| Void |
SetRank(Integer)
Declaration
Void SetRank(Integer rank) Examples
NSSuggestedDocumentEntity thing;
Integer rank;
thing.SetRank(rank);
Parameters
| Type | Name | Description |
| Integer | rank | Rank, controls rank of non-instantiated items in Guide. |
Returns
| Type | Description |
| Void |
SetSaleTypeStageLink(NSSaleTypeStageLink)
Declaration
Void SetSaleTypeStageLink(NSSaleTypeStageLink saleTypeStageLink) Examples
NSSuggestedDocumentEntity thing;
NSSaleTypeStageLink saleTypeStageLink;
thing.SetSaleTypeStageLink(saleTypeStageLink);
Parameters
| Type | Name | Description |
| NSSaleTypeStageLink | saleTypeStageLink | Sale type and stage link info. |
Returns
| Type | Description |
| Void |
SetSuggestedDocumentId(Integer)
Declaration
Void SetSuggestedDocumentId(Integer suggestedDocumentId) Examples
NSSuggestedDocumentEntity thing;
Integer suggestedDocumentId;
thing.SetSuggestedDocumentId(suggestedDocumentId);
Parameters
| Type | Name | Description |
| Integer | suggestedDocumentId | Primary key. |
Returns
| Type | Description |
| Void |