Show / Hide Table of Contents

Class NSAppointmentSyncData

Carrier object for AppointmentSyncData.

Syntax

Constructors

NSAppointmentSyncData()

Initializes a new instance of the NSAppointmentSyncData class.

Introduced or updated in version: 7.5

Declaration
NSAppointmentSyncData

Methods

GetAlarmTime()

Introduced or updated in version: 7.5

Declaration
DateTime GetAlarmTime()
Returns
Type Description
DateTime

Date and time at which to show alarm.

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

GetAppointmentId()

Introduced or updated in version: 7.5

Declaration
Integer GetAppointmentId()
Returns
Type Description
Integer
Examples
NSAppointmentSyncData thing;
Integer appointmentId = thing.GetAppointmentId();

GetAppointmentText()

Introduced or updated in version: 7.5

Declaration
String GetAppointmentText()
Returns
Type Description
String

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

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

GetContactDepartment()

Introduced or updated in version: 7.5

Declaration
String GetContactDepartment()
Returns
Type Description
String

The department of the contact connected to the appointment.

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

GetContactFullName()

Introduced or updated in version: 7.5

Declaration
String GetContactFullName()
Returns
Type Description
String

The entire name of the contact, including department name.

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

GetContactId()

Introduced or updated in version: 7.5

Declaration
Integer GetContactId()
Returns
Type Description
Integer

The contacts identifier.

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

GetContactName()

Introduced or updated in version: 7.5

Declaration
String GetContactName()
Returns
Type Description
String

The contact associated with the appointment.

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

GetEndDate()

Introduced or updated in version: 7.5

Declaration
DateTime GetEndDate()
Returns
Type Description
DateTime

Date + end time planned.

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

GetHasAlarm()

Introduced or updated in version: 7.5

Declaration
Bool GetHasAlarm()
Returns
Type Description
Bool

Does this appointment have an alarm?

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

GetIsAllDay()

Introduced or updated in version: 7.5

Declaration
Bool GetIsAllDay()
Returns
Type Description
Bool
Examples
NSAppointmentSyncData thing;
Bool isAllDay = thing.GetIsAllDay();

GetIsAssignment()

Introduced or updated in version: 7.5

Declaration
Bool GetIsAssignment()
Returns
Type Description
Bool
Examples
NSAppointmentSyncData thing;
Bool isAssignment = thing.GetIsAssignment();

GetIsBusy()

Introduced or updated in version: 7.5

Declaration
Bool GetIsBusy()
Returns
Type Description
Bool
Examples
NSAppointmentSyncData thing;
Bool isBusy = thing.GetIsBusy();

GetIsCompleted()

Introduced or updated in version: 7.5

Declaration
Bool GetIsCompleted()
Returns
Type Description
Bool
Examples
NSAppointmentSyncData thing;
Bool isCompleted = thing.GetIsCompleted();

GetIsInvitation()

Introduced or updated in version: 7.5

Declaration
Bool GetIsInvitation()
Returns
Type Description
Bool
Examples
NSAppointmentSyncData thing;
Bool isInvitation = thing.GetIsInvitation();

GetIsTentative()

Introduced or updated in version: 7.5

Declaration
Bool GetIsTentative()
Returns
Type Description
Bool
Examples
NSAppointmentSyncData thing;
Bool isTentative = thing.GetIsTentative();

GetLocation()

Introduced or updated in version: 7.5

Declaration
String 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.

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

GetParticipants()

Introduced or updated in version: 7.5

Declaration
NSParticipantSyncData[] GetParticipants()
Returns
Type Description
NSParticipantSyncData[]
Examples
NSAppointmentSyncData thing;
NSParticipantSyncData[] participants = thing.GetParticipants();

GetPersonFormalName()

Introduced or updated in version: 7.5

Declaration
String GetPersonFormalName()
Returns
Type Description
String
Examples
NSAppointmentSyncData thing;
String personFormalName = thing.GetPersonFormalName();

GetPersonFullName()

Introduced or updated in version: 7.5

Declaration
String GetPersonFullName()
Returns
Type Description
String

The full name of the person this appointment belongs to.

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

GetPersonId()

Introduced or updated in version: 7.5

Declaration
Integer GetPersonId()
Returns
Type Description
Integer

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

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

GetProjectId()

Introduced or updated in version: 7.5

Declaration
Integer GetProjectId()
Returns
Type Description
Integer

ID of project referred to, may be 0

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

GetProjectName()

Project name

Introduced or updated in version: 7.5

Declaration
String GetProjectName()
Returns
Type Description
String
Examples
NSAppointmentSyncData thing;
String projectName = thing.GetProjectName();

GetSaleId()

Introduced or updated in version: 7.5

Declaration
Integer GetSaleId()
Returns
Type Description
Integer

Owning sale, if any (may be 0).

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

GetSaleName()

Introduced or updated in version: 7.5

Declaration
String GetSaleName()
Returns
Type Description
String

Sale heading (short description?).

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

GetStartDate()

Introduced or updated in version: 7.5

Declaration
DateTime GetStartDate()
Returns
Type Description
DateTime

date + start time planned.

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

GetTaskName()

Introduced or updated in version: 7.5

Declaration
String GetTaskName()
Returns
Type Description
String
Examples
NSAppointmentSyncData thing;
String taskName = thing.GetTaskName();

SetAlarmTime(DateTime)

Introduced or updated in version: 7.5

Declaration
Void SetAlarmTime(DateTime alarmTime)
Parameters
Type Name Description
DateTime alarmTime

Date and time at which to show alarm.

Returns
Type Description
Void
Examples
NSAppointmentSyncData thing;
DateTime alarmTime;
thing.SetAlarmTime(alarmTime);

SetAppointmentId(Integer)

Introduced or updated in version: 7.5

Declaration
Void SetAppointmentId(Integer appointmentId)
Parameters
Type Name Description
Integer appointmentId

Primary key.

Returns
Type Description
Void
Examples
NSAppointmentSyncData thing;
Integer appointmentId;
thing.SetAppointmentId(appointmentId);

SetAppointmentText(String)

Introduced or updated in version: 7.5

Declaration
Void SetAppointmentText(String 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
Examples
NSAppointmentSyncData thing;
String appointmentText;
thing.SetAppointmentText(appointmentText);

SetContactDepartment(String)

Introduced or updated in version: 7.5

Declaration
Void SetContactDepartment(String contactDepartment)
Parameters
Type Name Description
String contactDepartment

The department of the contact connected to the appointment.

Returns
Type Description
Void
Examples
NSAppointmentSyncData thing;
String contactDepartment;
thing.SetContactDepartment(contactDepartment);

SetContactFullName(String)

Introduced or updated in version: 7.5

Declaration
Void SetContactFullName(String contactFullName)
Parameters
Type Name Description
String contactFullName

The entire name of the contact, including department name.

Returns
Type Description
Void
Examples
NSAppointmentSyncData thing;
String contactFullName;
thing.SetContactFullName(contactFullName);

SetContactId(Integer)

Introduced or updated in version: 7.5

Declaration
Void SetContactId(Integer contactId)
Parameters
Type Name Description
Integer contactId

The contacts identifier.

Returns
Type Description
Void
Examples
NSAppointmentSyncData thing;
Integer contactId;
thing.SetContactId(contactId);

SetContactName(String)

Introduced or updated in version: 7.5

Declaration
Void SetContactName(String contactName)
Parameters
Type Name Description
String contactName

The contact associated with the appointment.

Returns
Type Description
Void
Examples
NSAppointmentSyncData thing;
String contactName;
thing.SetContactName(contactName);

SetEndDate(DateTime)

Introduced or updated in version: 7.5

Declaration
Void SetEndDate(DateTime endDate)
Parameters
Type Name Description
DateTime endDate

Date + end time planned.

Returns
Type Description
Void
Examples
NSAppointmentSyncData thing;
DateTime endDate;
thing.SetEndDate(endDate);

SetHasAlarm(Bool)

Introduced or updated in version: 7.5

Declaration
Void SetHasAlarm(Bool hasAlarm)
Parameters
Type Name Description
Bool hasAlarm

Does this appointment have an alarm.

Returns
Type Description
Void
Examples
NSAppointmentSyncData thing;
Bool hasAlarm;
thing.SetHasAlarm(hasAlarm);

SetIsAllDay(Bool)

Introduced or updated in version: 7.5

Declaration
Void SetIsAllDay(Bool isAllDay)
Parameters
Type Name Description
Bool isAllDay
Returns
Type Description
Void
Examples
NSAppointmentSyncData thing;
Bool isAllDay;
thing.SetIsAllDay(isAllDay);

SetIsAssignment(Bool)

Introduced or updated in version: 7.5

Declaration
Void SetIsAssignment(Bool isAssignment)
Parameters
Type Name Description
Bool isAssignment
Returns
Type Description
Void
Examples
NSAppointmentSyncData thing;
Bool isAssignment;
thing.SetIsAssignment(isAssignment);

SetIsBusy(Bool)

Introduced or updated in version: 7.5

Declaration
Void SetIsBusy(Bool isBusy)
Parameters
Type Name Description
Bool isBusy
Returns
Type Description
Void
Examples
NSAppointmentSyncData thing;
Bool isBusy;
thing.SetIsBusy(isBusy);

SetIsCompleted(Bool)

Introduced or updated in version: 7.5

Declaration
Void SetIsCompleted(Bool isCompleted)
Parameters
Type Name Description
Bool isCompleted
Returns
Type Description
Void
Examples
NSAppointmentSyncData thing;
Bool isCompleted;
thing.SetIsCompleted(isCompleted);

SetIsInvitation(Bool)

Introduced or updated in version: 7.5

Declaration
Void SetIsInvitation(Bool isInvitation)
Parameters
Type Name Description
Bool isInvitation
Returns
Type Description
Void
Examples
NSAppointmentSyncData thing;
Bool isInvitation;
thing.SetIsInvitation(isInvitation);

SetIsTentative(Bool)

Introduced or updated in version: 7.5

Declaration
Void SetIsTentative(Bool isTentative)
Parameters
Type Name Description
Bool isTentative
Returns
Type Description
Void
Examples
NSAppointmentSyncData thing;
Bool isTentative;
thing.SetIsTentative(isTentative);

SetLocation(String)

Introduced or updated in version: 7.5

Declaration
Void SetLocation(String 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
Examples
NSAppointmentSyncData thing;
String location;
thing.SetLocation(location);

SetParticipants(NSParticipantSyncData[])

Introduced or updated in version: 7.5

Declaration
Void SetParticipants(NSParticipantSyncData[] participants)
Parameters
Type Name Description
NSParticipantSyncData[] participants
Returns
Type Description
Void
Examples
NSAppointmentSyncData thing;
NSParticipantSyncData[] participants;
thing.SetParticipants(participants);

SetPersonFormalName(String)

Introduced or updated in version: 7.5

Declaration
Void SetPersonFormalName(String personFormalName)
Parameters
Type Name Description
String personFormalName
Returns
Type Description
Void
Examples
NSAppointmentSyncData thing;
String personFormalName;
thing.SetPersonFormalName(personFormalName);

SetPersonFullName(String)

Introduced or updated in version: 7.5

Declaration
Void SetPersonFullName(String personFullName)
Parameters
Type Name Description
String personFullName

The full name of the person this appointment belongs to.

Returns
Type Description
Void
Examples
NSAppointmentSyncData thing;
String personFullName;
thing.SetPersonFullName(personFullName);

SetPersonId(Integer)

Introduced or updated in version: 7.5

Declaration
Void SetPersonId(Integer personId)
Parameters
Type Name Description
Integer personId

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

Returns
Type Description
Void
Examples
NSAppointmentSyncData thing;
Integer personId;
thing.SetPersonId(personId);

SetProjectId(Integer)

Introduced or updated in version: 7.5

Declaration
Void SetProjectId(Integer projectId)
Parameters
Type Name Description
Integer projectId

ID of project referred to, may be 0

Returns
Type Description
Void
Examples
NSAppointmentSyncData thing;
Integer projectId;
thing.SetProjectId(projectId);

SetProjectName(String)

Introduced or updated in version: 7.5

Declaration
Void SetProjectName(String projectName)
Parameters
Type Name Description
String projectName

Project name.

Returns
Type Description
Void
Examples
NSAppointmentSyncData thing;
String projectName;
thing.SetProjectName(projectName);

SetSaleId(Integer)

Introduced or updated in version: 7.5

Declaration
Void SetSaleId(Integer saleId)
Parameters
Type Name Description
Integer saleId

Owning sale, if any (may be 0).

Returns
Type Description
Void
Examples
NSAppointmentSyncData thing;
Integer saleId;
thing.SetSaleId(saleId);

SetSaleName(String)

Introduced or updated in version: 7.5

Declaration
Void SetSaleName(String saleName)
Parameters
Type Name Description
String saleName

Sale heading (short description?).

Returns
Type Description
Void
Examples
NSAppointmentSyncData thing;
String saleName;
thing.SetSaleName(saleName);

SetStartDate(DateTime)

Introduced or updated in version: 7.5

Declaration
Void SetStartDate(DateTime startDate)
Parameters
Type Name Description
DateTime startDate

date + start time planned.

Returns
Type Description
Void
Examples
NSAppointmentSyncData thing;
DateTime startDate;
thing.SetStartDate(startDate);

SetTaskName(String)

Introduced or updated in version: 7.5

Declaration
Void SetTaskName(String taskName)
Parameters
Type Name Description
String taskName
Returns
Type Description
Void
Examples
NSAppointmentSyncData thing;
String taskName;
thing.SetTaskName(taskName);
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top