Class NSSuggestedAppointmentEntity

Constructors

NSSuggestedAppointmentEntity()

Initializes a new instance of the NSSuggestedAppointmentEntity class.

Declaration

NSSuggestedAppointmentEntity

Methods

GetAssignToMember()

Declaration

Bool GetAssignToMember()

Examples

NSSuggestedAppointmentEntity thing;
Bool assignToMember = thing.GetAssignToMember();

Returns

Type Description
Bool Should this appointment be assigned to project member.

GetAutoSuggest()

Declaration

Bool GetAutoSuggest()

Examples

NSSuggestedAppointmentEntity thing;
Bool autoSuggest = thing.GetAutoSuggest();

Returns

Type Description
Bool Should this appointment be auto-suggested.

GetDaysFuture()

Declaration

Integer GetDaysFuture()

Examples

NSSuggestedAppointmentEntity thing;
Integer daysFuture = thing.GetDaysFuture();

Returns

Type Description
Integer How many days into the future the appointment should be scheduled.

GetDeleted()

Declaration

Bool GetDeleted()

Examples

NSSuggestedAppointmentEntity thing;
Bool deleted = thing.GetDeleted();

Returns

Type Description
Bool 0 -> record is active 1 -> record is 'deleted' and should not be shown in lists.

GetDuration()

Declaration

TimeSpan GetDuration()

Examples

NSSuggestedAppointmentEntity thing;
TimeSpan duration = thing.GetDuration();

Returns

Type Description
TimeSpan Duration in minutes of suggested appointment.

GetIsMilestone()

Declaration

Bool GetIsMilestone()

Examples

NSSuggestedAppointmentEntity thing;
Bool isMilestone = thing.GetIsMilestone();

Returns

Type Description
Bool Is this a milestone activity.

GetName()

Declaration

String GetName()

Examples

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

Returns

Type Description
String Item name, visible in Guide.

GetProjectTypeStatusLink()

Declaration

NSProjectTypeStatusLink GetProjectTypeStatusLink()

Examples

NSSuggestedAppointmentEntity thing;
NSProjectTypeStatusLink projectTypeStatusLink = thing.GetProjectTypeStatusLink();

Returns

Type Description
NSProjectTypeStatusLink Project type and project status link info.

GetRank()

Declaration

Integer GetRank()

Examples

NSSuggestedAppointmentEntity thing;
Integer rank = thing.GetRank();

Returns

Type Description
Integer Rank, controls rank of non-instantiated items in Guide.

GetSaleTypeStageLink()

Declaration

NSSaleTypeStageLink GetSaleTypeStageLink()

Examples

NSSuggestedAppointmentEntity thing;
NSSaleTypeStageLink saleTypeStageLink = thing.GetSaleTypeStageLink();

Returns

Type Description
NSSaleTypeStageLink Sale type and stage link info.

GetSuggestedAppointmentId()

Declaration

Integer GetSuggestedAppointmentId()

Examples

NSSuggestedAppointmentEntity thing;
Integer suggestedAppointmentId = thing.GetSuggestedAppointmentId();

Returns

Type Description
Integer Primary key.

GetText()

Declaration

String GetText()

Examples

NSSuggestedAppointmentEntity thing;
String text = thing.GetText();

Returns

Type Description
String The suggested text of the new appointment.

GetTooltip()

Declaration

String GetTooltip()

Examples

NSSuggestedAppointmentEntity thing;
String tooltip = thing.GetTooltip();

Returns

Type Description
String Tooltip / description.

GetType()

Declaration

NSTask GetType()

Examples

NSSuggestedAppointmentEntity thing;
NSTask type = thing.GetType();

Returns

Type Description
NSTask Type of the suggested appointment.

SetAssignToMember(Bool)

Declaration

Void SetAssignToMember(Bool assignToMember)

Examples

NSSuggestedAppointmentEntity thing;
Bool assignToMember;
thing.SetAssignToMember(assignToMember);

Parameters

Type Name Description
Bool assignToMember Should this appointment be assigned to project member.

Returns

Type Description
Void

SetAutoSuggest(Bool)

Declaration

Void SetAutoSuggest(Bool autoSuggest)

Examples

NSSuggestedAppointmentEntity thing;
Bool autoSuggest;
thing.SetAutoSuggest(autoSuggest);

Parameters

Type Name Description
Bool autoSuggest Should this appointment be auto-suggested.

Returns

Type Description
Void

SetDaysFuture(Integer)

Declaration

Void SetDaysFuture(Integer daysFuture)

Examples

NSSuggestedAppointmentEntity thing;
Integer daysFuture;
thing.SetDaysFuture(daysFuture);

Parameters

Type Name Description
Integer daysFuture How many days into the future the appointment should be scheduled.

Returns

Type Description
Void

SetDeleted(Bool)

Declaration

Void SetDeleted(Bool deleted)

Examples

NSSuggestedAppointmentEntity 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

SetDuration(TimeSpan)

Declaration

Void SetDuration(TimeSpan duration)

Examples

NSSuggestedAppointmentEntity thing;
TimeSpan duration;
thing.SetDuration(duration);

Parameters

Type Name Description
TimeSpan duration Duration in minutes of suggested appointment.

Returns

Type Description
Void

SetIsMilestone(Bool)

Declaration

Void SetIsMilestone(Bool isMilestone)

Examples

NSSuggestedAppointmentEntity thing;
Bool isMilestone;
thing.SetIsMilestone(isMilestone);

Parameters

Type Name Description
Bool isMilestone Is this a milestone activity.

Returns

Type Description
Void

SetName(String)

Declaration

Void SetName(String name)

Examples

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

Parameters

Type Name Description
String name Item name, visible in Guide.

Returns

Type Description
Void

SetProjectTypeStatusLink(NSProjectTypeStatusLink)

Declaration

Void SetProjectTypeStatusLink(NSProjectTypeStatusLink projectTypeStatusLink)

Examples

NSSuggestedAppointmentEntity 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

NSSuggestedAppointmentEntity 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

NSSuggestedAppointmentEntity thing;
NSSaleTypeStageLink saleTypeStageLink;
thing.SetSaleTypeStageLink(saleTypeStageLink);

Parameters

Type Name Description
NSSaleTypeStageLink saleTypeStageLink Sale type and stage link info.

Returns

Type Description
Void

SetSuggestedAppointmentId(Integer)

Declaration

Void SetSuggestedAppointmentId(Integer suggestedAppointmentId)

Examples

NSSuggestedAppointmentEntity thing;
Integer suggestedAppointmentId;
thing.SetSuggestedAppointmentId(suggestedAppointmentId);

Parameters

Type Name Description
Integer suggestedAppointmentId Primary key.

Returns

Type Description
Void

SetText(String)

Declaration

Void SetText(String text)

Examples

NSSuggestedAppointmentEntity thing;
String text;
thing.SetText(text);

Parameters

Type Name Description
String text The suggested text of the new appointment.

Returns

Type Description
Void

SetTooltip(String)

Declaration

Void SetTooltip(String tooltip)

Examples

NSSuggestedAppointmentEntity thing;
String tooltip;
thing.SetTooltip(tooltip);

Parameters

Type Name Description
String tooltip Tooltip / description.

Returns

Type Description
Void

SetType(NSTask)

Declaration

Void SetType(NSTask type)

Examples

NSSuggestedAppointmentEntity thing;
NSTask type;
thing.SetType(type);

Parameters

Type Name Description
NSTask type Type of the suggested appointment.

Returns

Type Description
Void