Class NSSaleStageEntity
This entity represents a sale stage with a default percentage rating.
Constructors
NSSaleStageEntity()
Initializes a new instance of the NSSaleStageEntity class.
Declaration
NSSaleStageEntity Methods
GetDeleted()
Declaration
Bool GetDeleted() Examples
NSSaleStageEntity thing;
Bool deleted = thing.GetDeleted();
Returns
| Type | Description |
| Bool | If true, the Sale stage is deleted. |
GetProbability()
Declaration
Integer GetProbability() Examples
NSSaleStageEntity thing;
Integer probability = thing.GetProbability();
Returns
| Type | Description |
| Integer | The numeric probability of the sale. |
GetRank()
Declaration
Integer GetRank() Examples
NSSaleStageEntity thing;
Integer rank = thing.GetRank();
Returns
| Type | Description |
| Integer | Rank order. |
GetSaleStageId()
Declaration
Integer GetSaleStageId() Examples
NSSaleStageEntity thing;
Integer saleStageId = thing.GetSaleStageId();
Returns
| Type | Description |
| Integer | Primary key. |
GetTooltip()
Declaration
String GetTooltip() Examples
NSSaleStageEntity thing;
String tooltip = thing.GetTooltip();
Returns
| Type | Description |
| String | Tooltip or other description. |
GetValue()
Declaration
String GetValue() Examples
NSSaleStageEntity thing;
String value = thing.GetValue();
Returns
| Type | Description |
| String | The sale stage. |
SetDeleted(Bool)
Declaration
Void SetDeleted(Bool deleted) Examples
NSSaleStageEntity thing;
Bool deleted;
thing.SetDeleted(deleted);
Parameters
| Type | Name | Description |
| Bool | deleted | If true, the Sale stage is deleted. |
Returns
| Type | Description |
| Void |
SetProbability(Integer)
Declaration
Void SetProbability(Integer probability) Examples
NSSaleStageEntity thing;
Integer probability;
thing.SetProbability(probability);
Parameters
| Type | Name | Description |
| Integer | probability | The numeric probability of the sale. |
Returns
| Type | Description |
| Void |
SetRank(Integer)
Declaration
Void SetRank(Integer rank) Examples
NSSaleStageEntity thing;
Integer rank;
thing.SetRank(rank);
Parameters
| Type | Name | Description |
| Integer | rank | Rank order. |
Returns
| Type | Description |
| Void |
SetSaleStageId(Integer)
Declaration
Void SetSaleStageId(Integer saleStageId) Examples
NSSaleStageEntity thing;
Integer saleStageId;
thing.SetSaleStageId(saleStageId);
Parameters
| Type | Name | Description |
| Integer | saleStageId | Primary key. |
Returns
| Type | Description |
| Void |