Class NSSuggestedAppointmentEntity
Syntax
Constructors
NSSuggestedAppointmentEntity()
Initializes a new instance of the NSSuggestedAppointmentEntity class.
Introduced or updated in version: 7.5
Declaration
NSSuggestedAppointmentEntity
Methods
GetAssignToMember()
Introduced or updated in version: 7.5
Declaration
Bool GetAssignToMember()
Returns
Type | Description |
---|---|
Bool | Should this appointment be assigned to project member. |
Examples
NSSuggestedAppointmentEntity thing;
Bool assignToMember = thing.GetAssignToMember();
GetAutoSuggest()
Introduced or updated in version: 7.5
Declaration
Bool GetAutoSuggest()
Returns
Type | Description |
---|---|
Bool | Should this appointment be auto-suggested. |
Examples
NSSuggestedAppointmentEntity thing;
Bool autoSuggest = thing.GetAutoSuggest();
GetDaysFuture()
Introduced or updated in version: 7.5
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()
Introduced or updated in version: 7.5
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()
Introduced or updated in version: 7.5
Declaration
TimeSpan GetDuration()
Returns
Type | Description |
---|---|
TimeSpan | Duration in minutes of suggested appointment. |
Examples
NSSuggestedAppointmentEntity thing;
TimeSpan duration = thing.GetDuration();
GetIsMilestone()
Introduced or updated in version: 7.5
Declaration
Bool GetIsMilestone()
Returns
Type | Description |
---|---|
Bool | Is this a milestone activity. |
Examples
NSSuggestedAppointmentEntity thing;
Bool isMilestone = thing.GetIsMilestone();
GetName()
Introduced or updated in version: 7.5
Declaration
String GetName()
Returns
Type | Description |
---|---|
String | Item name, visible in Guide. |
Examples
NSSuggestedAppointmentEntity thing;
String name = thing.GetName();
GetProjectTypeStatusLink()
Introduced or updated in version: 7.5
Declaration
NSProjectTypeStatusLink GetProjectTypeStatusLink()
Returns
Type | Description |
---|---|
NSProjectTypeStatusLink | Project type and project status link info. |
Examples
NSSuggestedAppointmentEntity thing;
NSProjectTypeStatusLink projectTypeStatusLink = thing.GetProjectTypeStatusLink();
GetRank()
Introduced or updated in version: 7.5
Declaration
Integer GetRank()
Returns
Type | Description |
---|---|
Integer | Rank, controls rank of non-instantiated items in Guide. |
Examples
NSSuggestedAppointmentEntity thing;
Integer rank = thing.GetRank();
GetSaleTypeStageLink()
Introduced or updated in version: 7.5
Declaration
NSSaleTypeStageLink GetSaleTypeStageLink()
Returns
Type | Description |
---|---|
NSSaleTypeStageLink | Sale type and stage link info. |
Examples
NSSuggestedAppointmentEntity thing;
NSSaleTypeStageLink saleTypeStageLink = thing.GetSaleTypeStageLink();
GetSuggestedAppointmentId()
Introduced or updated in version: 7.5
Declaration
Integer GetSuggestedAppointmentId()
Returns
Type | Description |
---|---|
Integer | Primary key. |
Examples
NSSuggestedAppointmentEntity thing;
Integer suggestedAppointmentId = thing.GetSuggestedAppointmentId();
GetText()
Introduced or updated in version: 7.5
Declaration
String GetText()
Returns
Type | Description |
---|---|
String | The suggested text of the new appointment. |
Examples
NSSuggestedAppointmentEntity thing;
String text = thing.GetText();
GetTooltip()
Introduced or updated in version: 7.5
Declaration
String GetTooltip()
Returns
Type | Description |
---|---|
String | Tooltip / description. |
Examples
NSSuggestedAppointmentEntity thing;
String tooltip = thing.GetTooltip();
GetType()
Introduced or updated in version: 7.5
Declaration
NSTask GetType()
Returns
Type | Description |
---|---|
NSTask | Type of the suggested appointment. |
Examples
NSSuggestedAppointmentEntity thing;
NSTask type = thing.GetType();
SetAssignToMember(Bool)
Introduced or updated in version: 7.5
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)
Introduced or updated in version: 7.5
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)
Introduced or updated in version: 7.5
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)
Introduced or updated in version: 7.5
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)
Introduced or updated in version: 7.5
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)
Introduced or updated in version: 7.5
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)
Introduced or updated in version: 7.5
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)
Introduced or updated in version: 7.5
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)
Introduced or updated in version: 7.5
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)
Introduced or updated in version: 7.5
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)
Introduced or updated in version: 7.5
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)
Introduced or updated in version: 7.5
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)
Introduced or updated in version: 7.5
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)
Introduced or updated in version: 7.5
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);