Show / Hide Table of Contents

Class NSSaleStageEntity

This entity represents a sale stage with a default percentage rating.

Syntax

Constructors

NSSaleStageEntity()

Initializes a new instance of the NSSaleStageEntity class.

Declaration
NSSaleStageEntity

Methods

GetDeleted()

This entity represents a sale stage with a default percentage rating.

Declaration
Bool GetDeleted()
Returns
Type Description
Bool

If true, the Sale stage is deleted.

Examples
NSSaleStageEntity thing;
Bool deleted = thing.GetDeleted();

GetProbability()

This entity represents a sale stage with a default percentage rating.

Declaration
Integer GetProbability()
Returns
Type Description
Integer

The numeric probability of the sale.

Examples
NSSaleStageEntity thing;
Integer probability = thing.GetProbability();

GetRank()

This entity represents a sale stage with a default percentage rating.

Declaration
Integer GetRank()
Returns
Type Description
Integer

Rank order.

Examples
NSSaleStageEntity thing;
Integer rank = thing.GetRank();

GetSaleStageId()

This entity represents a sale stage with a default percentage rating.

Declaration
Integer GetSaleStageId()
Returns
Type Description
Integer

Primary key.

Examples
NSSaleStageEntity thing;
Integer saleStageId = thing.GetSaleStageId();

GetTooltip()

This entity represents a sale stage with a default percentage rating.

Declaration
String GetTooltip()
Returns
Type Description
String

Tooltip or other description.

Examples
NSSaleStageEntity thing;
String tooltip = thing.GetTooltip();

GetValue()

This entity represents a sale stage with a default percentage rating.

Declaration
String GetValue()
Returns
Type Description
String

The sale stage.

Examples
NSSaleStageEntity thing;
String value = thing.GetValue();

SetDeleted(Bool)

This entity represents a sale stage with a default percentage rating.

Declaration
Void SetDeleted(Bool deleted)
Parameters
Type Name Description
Bool deleted

If true, the Sale stage is deleted.

Returns
Type Description
Void
Examples
NSSaleStageEntity thing;
Bool deleted;
thing.SetDeleted(deleted);

SetProbability(Integer)

This entity represents a sale stage with a default percentage rating.

Declaration
Void SetProbability(Integer probability)
Parameters
Type Name Description
Integer probability

The numeric probability of the sale.

Returns
Type Description
Void
Examples
NSSaleStageEntity thing;
Integer probability;
thing.SetProbability(probability);

SetRank(Integer)

This entity represents a sale stage with a default percentage rating.

Declaration
Void SetRank(Integer rank)
Parameters
Type Name Description
Integer rank

Rank order.

Returns
Type Description
Void
Examples
NSSaleStageEntity thing;
Integer rank;
thing.SetRank(rank);

SetSaleStageId(Integer)

This entity represents a sale stage with a default percentage rating.

Declaration
Void SetSaleStageId(Integer saleStageId)
Parameters
Type Name Description
Integer saleStageId

Primary key.

Returns
Type Description
Void
Examples
NSSaleStageEntity thing;
Integer saleStageId;
thing.SetSaleStageId(saleStageId);

SetTooltip(String)

This entity represents a sale stage with a default percentage rating.

Declaration
Void SetTooltip(String tooltip)
Parameters
Type Name Description
String tooltip

Tooltip or other description.

Returns
Type Description
Void
Examples
NSSaleStageEntity thing;
String tooltip;
thing.SetTooltip(tooltip);

SetValue(String)

This entity represents a sale stage with a default percentage rating.

Declaration
Void SetValue(String value)
Parameters
Type Name Description
String value

The sale stage.

Returns
Type Description
Void
Examples
NSSaleStageEntity thing;
String value;
thing.SetValue(value);
In This Article
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top