Show / Hide Table of Contents

Class NSSuggestedAppointmentEntity

Syntax

Constructors

NSSuggestedAppointmentEntity()

Initializes a new instance of the NSSuggestedAppointmentEntity class.

Declaration
NSSuggestedAppointmentEntity

Methods

GetAssignToMember()

Declaration
Bool GetAssignToMember()
Returns
Type Description
Bool

Should this appointment be assigned to project member.

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

GetAutoSuggest()

Declaration
Bool GetAutoSuggest()
Returns
Type Description
Bool

Should this appointment be auto-suggested.

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

GetDaysFuture()

Declaration
Integer GetDaysFuture()
Returns
Type Description
Integer

How many days into the future the appointment should be scheduled.

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

GetDeleted()

Declaration
Bool GetDeleted()
Returns
Type Description
Bool

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

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

GetDuration()

Declaration
TimeSpan GetDuration()
Returns
Type Description
TimeSpan

Duration in minutes of suggested appointment.

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

GetIsMilestone()

Declaration
Bool GetIsMilestone()
Returns
Type Description
Bool

Is this a milestone activity.

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

GetName()

Declaration
String GetName()
Returns
Type Description
String

Item name, visible in Guide.

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

GetProjectTypeStatusLink()

Declaration
NSProjectTypeStatusLink GetProjectTypeStatusLink()
Returns
Type Description
NSProjectTypeStatusLink

Project type and project status link info.

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

GetRank()

Declaration
Integer GetRank()
Returns
Type Description
Integer

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

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

GetSaleTypeStageLink()

Declaration
NSSaleTypeStageLink GetSaleTypeStageLink()
Returns
Type Description
NSSaleTypeStageLink

Sale type and stage link info.

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

GetSuggestedAppointmentId()

Declaration
Integer GetSuggestedAppointmentId()
Returns
Type Description
Integer

Primary key.

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

GetText()

Declaration
String GetText()
Returns
Type Description
String

The suggested text of the new appointment.

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

GetTooltip()

Declaration
String GetTooltip()
Returns
Type Description
String

Tooltip / description.

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

GetType()

Declaration
NSTask GetType()
Returns
Type Description
NSTask

Type of the suggested appointment.

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

SetAssignToMember(Bool)

Declaration
Void SetAssignToMember(Bool assignToMember)
Parameters
Type Name Description
Bool assignToMember

Should this appointment be assigned to project member.

Returns
Type Description
Void
Examples
NSSuggestedAppointmentEntity thing;
Bool assignToMember;
thing.SetAssignToMember(assignToMember);

SetAutoSuggest(Bool)

Declaration
Void SetAutoSuggest(Bool autoSuggest)
Parameters
Type Name Description
Bool autoSuggest

Should this appointment be auto-suggested.

Returns
Type Description
Void
Examples
NSSuggestedAppointmentEntity thing;
Bool autoSuggest;
thing.SetAutoSuggest(autoSuggest);

SetDaysFuture(Integer)

Declaration
Void SetDaysFuture(Integer daysFuture)
Parameters
Type Name Description
Integer daysFuture

How many days into the future the appointment should be scheduled.

Returns
Type Description
Void
Examples
NSSuggestedAppointmentEntity thing;
Integer daysFuture;
thing.SetDaysFuture(daysFuture);

SetDeleted(Bool)

Declaration
Void SetDeleted(Bool 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
Examples
NSSuggestedAppointmentEntity thing;
Bool deleted;
thing.SetDeleted(deleted);

SetDuration(TimeSpan)

Declaration
Void SetDuration(TimeSpan duration)
Parameters
Type Name Description
TimeSpan duration

Duration in minutes of suggested appointment.

Returns
Type Description
Void
Examples
NSSuggestedAppointmentEntity thing;
TimeSpan duration;
thing.SetDuration(duration);

SetIsMilestone(Bool)

Declaration
Void SetIsMilestone(Bool isMilestone)
Parameters
Type Name Description
Bool isMilestone

Is this a milestone activity.

Returns
Type Description
Void
Examples
NSSuggestedAppointmentEntity thing;
Bool isMilestone;
thing.SetIsMilestone(isMilestone);

SetName(String)

Declaration
Void SetName(String name)
Parameters
Type Name Description
String name

Item name, visible in Guide.

Returns
Type Description
Void
Examples
NSSuggestedAppointmentEntity thing;
String name;
thing.SetName(name);

SetProjectTypeStatusLink(NSProjectTypeStatusLink)

Declaration
Void SetProjectTypeStatusLink(NSProjectTypeStatusLink projectTypeStatusLink)
Parameters
Type Name Description
NSProjectTypeStatusLink projectTypeStatusLink

Project type and project status link info.

Returns
Type Description
Void
Examples
NSSuggestedAppointmentEntity thing;
NSProjectTypeStatusLink projectTypeStatusLink;
thing.SetProjectTypeStatusLink(projectTypeStatusLink);

SetRank(Integer)

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

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

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

SetSaleTypeStageLink(NSSaleTypeStageLink)

Declaration
Void SetSaleTypeStageLink(NSSaleTypeStageLink saleTypeStageLink)
Parameters
Type Name Description
NSSaleTypeStageLink saleTypeStageLink

Sale type and stage link info.

Returns
Type Description
Void
Examples
NSSuggestedAppointmentEntity thing;
NSSaleTypeStageLink saleTypeStageLink;
thing.SetSaleTypeStageLink(saleTypeStageLink);

SetSuggestedAppointmentId(Integer)

Declaration
Void SetSuggestedAppointmentId(Integer suggestedAppointmentId)
Parameters
Type Name Description
Integer suggestedAppointmentId

Primary key.

Returns
Type Description
Void
Examples
NSSuggestedAppointmentEntity thing;
Integer suggestedAppointmentId;
thing.SetSuggestedAppointmentId(suggestedAppointmentId);

SetText(String)

Declaration
Void SetText(String text)
Parameters
Type Name Description
String text

The suggested text of the new appointment.

Returns
Type Description
Void
Examples
NSSuggestedAppointmentEntity thing;
String text;
thing.SetText(text);

SetTooltip(String)

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

Tooltip / description.

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

SetType(NSTask)

Declaration
Void SetType(NSTask type)
Parameters
Type Name Description
NSTask type

Type of the suggested appointment.

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