Class NSAppointmentSyncData

Carrier object for AppointmentSyncData.

Constructors

NSAppointmentSyncData()

Initializes a new instance of the NSAppointmentSyncData class.

Declaration

NSAppointmentSyncData

Methods

GetAlarmTime()

Declaration

DateTime GetAlarmTime()

Examples

NSAppointmentSyncData thing;
DateTime alarmTime = thing.GetAlarmTime();

Returns

Type Description
DateTime Date and time at which to show alarm.

GetAppointmentId()

Declaration

Integer GetAppointmentId()

Examples

NSAppointmentSyncData thing;
Integer appointmentId = thing.GetAppointmentId();

Returns

Type Description
Integer

GetAppointmentText()

Declaration

String GetAppointmentText()

Examples

NSAppointmentSyncData thing;
String appointmentText = thing.GetAppointmentText();

Returns

Type Description
String The appointment's textbox; holds a descriptive text about the appointment. Filled out by the user.

GetContactDepartment()

Declaration

String GetContactDepartment()

Examples

NSAppointmentSyncData thing;
String contactDepartment = thing.GetContactDepartment();

Returns

Type Description
String The department of the contact connected to the appointment.

GetContactFullName()

Declaration

String GetContactFullName()

Examples

NSAppointmentSyncData thing;
String contactFullName = thing.GetContactFullName();

Returns

Type Description
String The entire name of the contact, including department name.

GetContactId()

Declaration

Integer GetContactId()

Examples

NSAppointmentSyncData thing;
Integer contactId = thing.GetContactId();

Returns

Type Description
Integer The contacts identifier.

GetContactName()

Declaration

String GetContactName()

Examples

NSAppointmentSyncData thing;
String contactName = thing.GetContactName();

Returns

Type Description
String The contact associated with the appointment.

GetEndDate()

Declaration

DateTime GetEndDate()

Examples

NSAppointmentSyncData thing;
DateTime endDate = thing.GetEndDate();

Returns

Type Description
DateTime Date + end time planned.

GetHasAlarm()

Declaration

Bool GetHasAlarm()

Examples

NSAppointmentSyncData thing;
Bool hasAlarm = thing.GetHasAlarm();

Returns

Type Description
Bool Does this appointment have an alarm?

GetIsAllDay()

Declaration

Bool GetIsAllDay()

Examples

NSAppointmentSyncData thing;
Bool isAllDay = thing.GetIsAllDay();

Returns

Type Description
Bool

GetIsAssignment()

Declaration

Bool GetIsAssignment()

Examples

NSAppointmentSyncData thing;
Bool isAssignment = thing.GetIsAssignment();

Returns

Type Description
Bool

GetIsBusy()

Declaration

Bool GetIsBusy()

Examples

NSAppointmentSyncData thing;
Bool isBusy = thing.GetIsBusy();

Returns

Type Description
Bool

GetIsCompleted()

Declaration

Bool GetIsCompleted()

Examples

NSAppointmentSyncData thing;
Bool isCompleted = thing.GetIsCompleted();

Returns

Type Description
Bool

GetIsInvitation()

Declaration

Bool GetIsInvitation()

Examples

NSAppointmentSyncData thing;
Bool isInvitation = thing.GetIsInvitation();

Returns

Type Description
Bool

GetIsTentative()

Declaration

Bool GetIsTentative()

Examples

NSAppointmentSyncData thing;
Bool isTentative = thing.GetIsTentative();

Returns

Type Description
Bool

GetLocation()

Declaration

String GetLocation()

Examples

NSAppointmentSyncData thing;
String location = thing.GetLocation();

Returns

Type Description
String Location for appointment, defaulted from invited resource of type place and other rules, but you can write anything you want here.

GetParticipants()

Declaration

NSParticipantSyncData[] GetParticipants()

Examples

NSAppointmentSyncData thing;
NSParticipantSyncData[] participants = thing.GetParticipants();

Returns

Type Description
NSParticipantSyncData[]

GetPersonFormalName()

Declaration

String GetPersonFormalName()

Examples

NSAppointmentSyncData thing;
String personFormalName = thing.GetPersonFormalName();

Returns

Type Description
String

GetPersonFullName()

Declaration

String GetPersonFullName()

Examples

NSAppointmentSyncData thing;
String personFullName = thing.GetPersonFullName();

Returns

Type Description
String The full name of the person this appointment belongs to.

GetPersonId()

Declaration

Integer GetPersonId()

Examples

NSAppointmentSyncData thing;
Integer personId = thing.GetPersonId();

Returns

Type Description
Integer Person ID of person the appointment is with, may be 0

GetProjectId()

Declaration

Integer GetProjectId()

Examples

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

Returns

Type Description
Integer ID of project referred to, may be 0

GetProjectName()

Project name

Declaration

String GetProjectName()

Examples

NSAppointmentSyncData thing;
String projectName = thing.GetProjectName();

Returns

Type Description
String

GetSaleId()

Declaration

Integer GetSaleId()

Examples

NSAppointmentSyncData thing;
Integer saleId = thing.GetSaleId();

Returns

Type Description
Integer Owning sale, if any (may be 0).

GetSaleName()

Declaration

String GetSaleName()

Examples

NSAppointmentSyncData thing;
String saleName = thing.GetSaleName();

Returns

Type Description
String Sale heading (short description?).

GetStartDate()

Declaration

DateTime GetStartDate()

Examples

NSAppointmentSyncData thing;
DateTime startDate = thing.GetStartDate();

Returns

Type Description
DateTime date + start time planned.

GetTaskName()

Declaration

String GetTaskName()

Examples

NSAppointmentSyncData thing;
String taskName = thing.GetTaskName();

Returns

Type Description
String

SetAlarmTime(DateTime)

Declaration

Void SetAlarmTime(DateTime alarmTime)

Examples

NSAppointmentSyncData thing;
DateTime alarmTime;
thing.SetAlarmTime(alarmTime);

Parameters

Type Name Description
DateTime alarmTime Date and time at which to show alarm.

Returns

Type Description
Void

SetAppointmentId(Integer)

Declaration

Void SetAppointmentId(Integer appointmentId)

Examples

NSAppointmentSyncData thing;
Integer appointmentId;
thing.SetAppointmentId(appointmentId);

Parameters

Type Name Description
Integer appointmentId Primary key.

Returns

Type Description
Void

SetAppointmentText(String)

Declaration

Void SetAppointmentText(String appointmentText)

Examples

NSAppointmentSyncData thing;
String appointmentText;
thing.SetAppointmentText(appointmentText);

Parameters

Type Name Description
String appointmentText The appointment's textbox; holds a descriptive text about the appointment. Filled out by the user.

Returns

Type Description
Void

SetContactDepartment(String)

Declaration

Void SetContactDepartment(String contactDepartment)

Examples

NSAppointmentSyncData thing;
String contactDepartment;
thing.SetContactDepartment(contactDepartment);

Parameters

Type Name Description
String contactDepartment The department of the contact connected to the appointment.

Returns

Type Description
Void

SetContactFullName(String)

Declaration

Void SetContactFullName(String contactFullName)

Examples

NSAppointmentSyncData thing;
String contactFullName;
thing.SetContactFullName(contactFullName);

Parameters

Type Name Description
String contactFullName The entire name of the contact, including department name.

Returns

Type Description
Void

SetContactId(Integer)

Declaration

Void SetContactId(Integer contactId)

Examples

NSAppointmentSyncData thing;
Integer contactId;
thing.SetContactId(contactId);

Parameters

Type Name Description
Integer contactId The contacts identifier.

Returns

Type Description
Void

SetContactName(String)

Declaration

Void SetContactName(String contactName)

Examples

NSAppointmentSyncData thing;
String contactName;
thing.SetContactName(contactName);

Parameters

Type Name Description
String contactName The contact associated with the appointment.

Returns

Type Description
Void

SetEndDate(DateTime)

Declaration

Void SetEndDate(DateTime endDate)

Examples

NSAppointmentSyncData thing;
DateTime endDate;
thing.SetEndDate(endDate);

Parameters

Type Name Description
DateTime endDate Date + end time planned.

Returns

Type Description
Void

SetHasAlarm(Bool)

Declaration

Void SetHasAlarm(Bool hasAlarm)

Examples

NSAppointmentSyncData thing;
Bool hasAlarm;
thing.SetHasAlarm(hasAlarm);

Parameters

Type Name Description
Bool hasAlarm Does this appointment have an alarm.

Returns

Type Description
Void

SetIsAllDay(Bool)

Declaration

Void SetIsAllDay(Bool isAllDay)

Examples

NSAppointmentSyncData thing;
Bool isAllDay;
thing.SetIsAllDay(isAllDay);

Parameters

Type Name Description
Bool isAllDay

Returns

Type Description
Void

SetIsAssignment(Bool)

Declaration

Void SetIsAssignment(Bool isAssignment)

Examples

NSAppointmentSyncData thing;
Bool isAssignment;
thing.SetIsAssignment(isAssignment);

Parameters

Type Name Description
Bool isAssignment

Returns

Type Description
Void

SetIsBusy(Bool)

Declaration

Void SetIsBusy(Bool isBusy)

Examples

NSAppointmentSyncData thing;
Bool isBusy;
thing.SetIsBusy(isBusy);

Parameters

Type Name Description
Bool isBusy

Returns

Type Description
Void

SetIsCompleted(Bool)

Declaration

Void SetIsCompleted(Bool isCompleted)

Examples

NSAppointmentSyncData thing;
Bool isCompleted;
thing.SetIsCompleted(isCompleted);

Parameters

Type Name Description
Bool isCompleted

Returns

Type Description
Void

SetIsInvitation(Bool)

Declaration

Void SetIsInvitation(Bool isInvitation)

Examples

NSAppointmentSyncData thing;
Bool isInvitation;
thing.SetIsInvitation(isInvitation);

Parameters

Type Name Description
Bool isInvitation

Returns

Type Description
Void

SetIsTentative(Bool)

Declaration

Void SetIsTentative(Bool isTentative)

Examples

NSAppointmentSyncData thing;
Bool isTentative;
thing.SetIsTentative(isTentative);

Parameters

Type Name Description
Bool isTentative

Returns

Type Description
Void

SetLocation(String)

Declaration

Void SetLocation(String location)

Examples

NSAppointmentSyncData thing;
String location;
thing.SetLocation(location);

Parameters

Type Name Description
String location Location for appointment, defaulted from invited resource of type place and other rules, but you can write anything you want here.

Returns

Type Description
Void

SetParticipants(NSParticipantSyncData[])

Declaration

Void SetParticipants(NSParticipantSyncData[] participants)

Examples

NSAppointmentSyncData thing;
NSParticipantSyncData[] participants;
thing.SetParticipants(participants);

Parameters

Type Name Description
NSParticipantSyncData[] participants

Returns

Type Description
Void

SetPersonFormalName(String)

Declaration

Void SetPersonFormalName(String personFormalName)

Examples

NSAppointmentSyncData thing;
String personFormalName;
thing.SetPersonFormalName(personFormalName);

Parameters

Type Name Description
String personFormalName

Returns

Type Description
Void

SetPersonFullName(String)

Declaration

Void SetPersonFullName(String personFullName)

Examples

NSAppointmentSyncData thing;
String personFullName;
thing.SetPersonFullName(personFullName);

Parameters

Type Name Description
String personFullName The full name of the person this appointment belongs to.

Returns

Type Description
Void

SetPersonId(Integer)

Declaration

Void SetPersonId(Integer personId)

Examples

NSAppointmentSyncData thing;
Integer personId;
thing.SetPersonId(personId);

Parameters

Type Name Description
Integer personId Person ID of person the appointment is with, may be 0

Returns

Type Description
Void

SetProjectId(Integer)

Declaration

Void SetProjectId(Integer projectId)

Examples

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

Parameters

Type Name Description
Integer projectId ID of project referred to, may be 0

Returns

Type Description
Void

SetProjectName(String)

Declaration

Void SetProjectName(String projectName)

Examples

NSAppointmentSyncData thing;
String projectName;
thing.SetProjectName(projectName);

Parameters

Type Name Description
String projectName Project name.

Returns

Type Description
Void

SetSaleId(Integer)

Declaration

Void SetSaleId(Integer saleId)

Examples

NSAppointmentSyncData thing;
Integer saleId;
thing.SetSaleId(saleId);

Parameters

Type Name Description
Integer saleId Owning sale, if any (may be 0).

Returns

Type Description
Void

SetSaleName(String)

Declaration

Void SetSaleName(String saleName)

Examples

NSAppointmentSyncData thing;
String saleName;
thing.SetSaleName(saleName);

Parameters

Type Name Description
String saleName Sale heading (short description?).

Returns

Type Description
Void

SetStartDate(DateTime)

Declaration

Void SetStartDate(DateTime startDate)

Examples

NSAppointmentSyncData thing;
DateTime startDate;
thing.SetStartDate(startDate);

Parameters

Type Name Description
DateTime startDate date + start time planned.

Returns

Type Description
Void

SetTaskName(String)

Declaration

Void SetTaskName(String taskName)

Examples

NSAppointmentSyncData thing;
String taskName;
thing.SetTaskName(taskName);

Parameters

Type Name Description
String taskName

Returns

Type Description
Void