Class NSProject

Carrier object for Project.

Constructors

NSProject()

Initializes a new instance of the NSProject class.

Declaration

NSProject

Methods

GetActiveErpLinks()

Declaration

Integer GetActiveErpLinks()

Examples

NSProject thing;
Integer activeErpLinks = thing.GetActiveErpLinks();

Returns

Type Description
Integer The number of active ERP links.

GetAssociateFullName()

Declaration

String GetAssociateFullName()

Examples

NSProject thing;
String associateFullName = thing.GetAssociateFullName();

Returns

Type Description
String The project owner.

GetAssociateId()

Declaration

Integer GetAssociateId()

Examples

NSProject thing;
Integer associateId = thing.GetAssociateId();

Returns

Type Description
Integer The project owner ID (associate ID).

GetDescription()

Declaration

String GetDescription()

Examples

NSProject thing;
String description = thing.GetDescription();

Returns

Type Description
String The projects description.

GetIsPublished()

Declaration

Bool GetIsPublished()

Examples

NSProject thing;
Bool isPublished = thing.GetIsPublished();

Returns

Type Description
Bool

GetName()

Declaration

String GetName()

Examples

NSProject thing;
String name = thing.GetName();

Returns

Type Description
String Project name.

GetProjectId()

Declaration

Integer GetProjectId()

Examples

NSProject thing;
Integer projectId = thing.GetProjectId();

Returns

Type Description
Integer Primary key.

GetProjectNumber()

Declaration

String GetProjectNumber()

Examples

NSProject thing;
String projectNumber = thing.GetProjectNumber();

Returns

Type Description
String Automatically generated number.

GetPublishFrom()

Declaration

DateTime GetPublishFrom()

Examples

NSProject thing;
DateTime publishFrom = thing.GetPublishFrom();

Returns

Type Description
DateTime Publication valid from (inclusive).

GetPublishTo()

Declaration

DateTime GetPublishTo()

Examples

NSProject thing;
DateTime publishTo = thing.GetPublishTo();

Returns

Type Description
DateTime Publication valid to (inclusive).

GetStatus()

Declaration

String GetStatus()

Examples

NSProject thing;
String status = thing.GetStatus();

Returns

Type Description
String The projects status.

GetStatusId()

Declaration

Integer GetStatusId()

Examples

NSProject thing;
Integer statusId = thing.GetStatusId();

Returns

Type Description
Integer The projects status Id.

GetTextId()

Declaration

Integer GetTextId()

Examples

NSProject thing;
Integer textId = thing.GetTextId();

Returns

Type Description
Integer The ID of the description.

GetType()

Declaration

String GetType()

Examples

NSProject thing;
String type = thing.GetType();

Returns

Type Description
String The project type.

GetTypeId()

Declaration

Integer GetTypeId()

Examples

NSProject thing;
Integer typeId = thing.GetTypeId();

Returns

Type Description
Integer

GetUpdated()

Declaration

DateTime GetUpdated()

Examples

NSProject thing;
DateTime updated = thing.GetUpdated();

Returns

Type Description
DateTime Last updated date.

GetURL()

Declaration

String GetURL()

Examples

NSProject thing;
String uRL = thing.GetURL();

Returns

Type Description
String URL address.

GetURLName()

Declaration

String GetURLName()

Examples

NSProject thing;
String uRLName = thing.GetURLName();

Returns

Type Description
String Visible field.

SetActiveErpLinks(Integer)

Declaration

Void SetActiveErpLinks(Integer activeErpLinks)

Examples

NSProject thing;
Integer activeErpLinks;
thing.SetActiveErpLinks(activeErpLinks);

Parameters

Type Name Description
Integer activeErpLinks The number of active ERP links.

Returns

Type Description
Void

SetAssociateFullName(String)

Declaration

Void SetAssociateFullName(String associateFullName)

Examples

NSProject thing;
String associateFullName;
thing.SetAssociateFullName(associateFullName);

Parameters

Type Name Description
String associateFullName The project owner.

Returns

Type Description
Void

SetAssociateId(Integer)

Declaration

Void SetAssociateId(Integer associateId)

Examples

NSProject thing;
Integer associateId;
thing.SetAssociateId(associateId);

Parameters

Type Name Description
Integer associateId The project owner ID (associate ID).

Returns

Type Description
Void

SetDescription(String)

Declaration

Void SetDescription(String description)

Examples

NSProject thing;
String description;
thing.SetDescription(description);

Parameters

Type Name Description
String description The projects description.

Returns

Type Description
Void

SetIsPublished(Bool)

Declaration

Void SetIsPublished(Bool isPublished)

Examples

NSProject thing;
Bool isPublished;
thing.SetIsPublished(isPublished);

Parameters

Type Name Description
Bool isPublished

Returns

Type Description
Void

SetName(String)

Declaration

Void SetName(String name)

Examples

NSProject thing;
String name;
thing.SetName(name);

Parameters

Type Name Description
String name Project name.

Returns

Type Description
Void

SetProjectId(Integer)

Declaration

Void SetProjectId(Integer projectId)

Examples

NSProject thing;
Integer projectId;
thing.SetProjectId(projectId);

Parameters

Type Name Description
Integer projectId Primary key.

Returns

Type Description
Void

SetProjectNumber(String)

Declaration

Void SetProjectNumber(String projectNumber)

Examples

NSProject thing;
String projectNumber;
thing.SetProjectNumber(projectNumber);

Parameters

Type Name Description
String projectNumber Automatically generated number.

Returns

Type Description
Void

SetPublishFrom(DateTime)

Declaration

Void SetPublishFrom(DateTime publishFrom)

Examples

NSProject thing;
DateTime publishFrom;
thing.SetPublishFrom(publishFrom);

Parameters

Type Name Description
DateTime publishFrom Publication valid from (inclusive).

Returns

Type Description
Void

SetPublishTo(DateTime)

Declaration

Void SetPublishTo(DateTime publishTo)

Examples

NSProject thing;
DateTime publishTo;
thing.SetPublishTo(publishTo);

Parameters

Type Name Description
DateTime publishTo Publication valid to (inclusive).

Returns

Type Description
Void

SetStatus(String)

Declaration

Void SetStatus(String status)

Examples

NSProject thing;
String status;
thing.SetStatus(status);

Parameters

Type Name Description
String status The projects status.

Returns

Type Description
Void

SetStatusId(Integer)

Declaration

Void SetStatusId(Integer statusId)

Examples

NSProject thing;
Integer statusId;
thing.SetStatusId(statusId);

Parameters

Type Name Description
Integer statusId The projects status Id.

Returns

Type Description
Void

SetTextId(Integer)

Declaration

Void SetTextId(Integer textId)

Examples

NSProject thing;
Integer textId;
thing.SetTextId(textId);

Parameters

Type Name Description
Integer textId The ID of the description.

Returns

Type Description
Void

SetType(String)

Declaration

Void SetType(String type)

Examples

NSProject thing;
String type;
thing.SetType(type);

Parameters

Type Name Description
String type The project type.

Returns

Type Description
Void

SetTypeId(Integer)

Declaration

Void SetTypeId(Integer typeId)

Examples

NSProject thing;
Integer typeId;
thing.SetTypeId(typeId);

Parameters

Type Name Description
Integer typeId

Returns

Type Description
Void

SetUpdated(DateTime)

Declaration

Void SetUpdated(DateTime updated)

Examples

NSProject thing;
DateTime updated;
thing.SetUpdated(updated);

Parameters

Type Name Description
DateTime updated Last updated date.

Returns

Type Description
Void

SetURL(String)

Declaration

Void SetURL(String uRL)

Examples

NSProject thing;
String uRL;
thing.SetURL(uRL);

Parameters

Type Name Description
String uRL URL address.

Returns

Type Description
Void

SetURLName(String)

Declaration

Void SetURLName(String uRLName)

Examples

NSProject thing;
String uRLName;
thing.SetURLName(uRLName);

Parameters

Type Name Description
String uRLName Visible field.

Returns

Type Description
Void