Class NSParticipantSyncData
Carrier object for ParticipantSyncData.
Constructors
NSParticipantSyncData()
Initializes a new instance of the NSParticipantSyncData class.
Declaration
NSParticipantSyncData Methods
GetContactBusiness()
Declaration
String GetContactBusiness() Examples
NSParticipantSyncData thing;
String contactBusiness = thing.GetContactBusiness();
Returns
| Type | Description |
| String | The business that the contact is associated with. |
GetContactCategory()
Declaration
String GetContactCategory() Examples
NSParticipantSyncData thing;
String contactCategory = thing.GetContactCategory();
Returns
| Type | Description |
| String | The category that is set on the company. |
GetContactCountry()
Declaration
String GetContactCountry() Examples
NSParticipantSyncData thing;
String contactCountry = thing.GetContactCountry();
Returns
| Type | Description |
| String |
GetContactDepartment()
Declaration
String GetContactDepartment() Examples
NSParticipantSyncData thing;
String contactDepartment = thing.GetContactDepartment();
Returns
| Type | Description |
| String | Department. |
GetContactFullName()
Declaration
String GetContactFullName() Examples
NSParticipantSyncData thing;
String contactFullName = thing.GetContactFullName();
Returns
| Type | Description |
| String |
GetContactId()
Declaration
Integer GetContactId() Examples
NSParticipantSyncData thing;
Integer contactId = thing.GetContactId();
Returns
| Type | Description |
| Integer | Contact ID of owning contact, may be 0 |
GetContactName()
Declaration
String GetContactName() Examples
NSParticipantSyncData thing;
String contactName = thing.GetContactName();
Returns
| Type | Description |
| String | Contact name. |
GetContactUrl()
Declaration
String[] GetContactUrl() Examples
NSParticipantSyncData thing;
String[] contactUrl = thing.GetContactUrl();
Returns
| Type | Description |
| String[] | The contact's internet addresses. |
GetCountry()
Declaration
String GetCountry() Examples
NSParticipantSyncData thing;
String country = thing.GetCountry();
Returns
| Type | Description |
| String | The country this contact is located in. |
GetEMail()
Declaration
String[] GetEMail() Examples
NSParticipantSyncData thing;
String[] eMail = thing.GetEMail();
Returns
| Type | Description |
| String[] |
GetMessenger()
Declaration
String[] GetMessenger() Examples
NSParticipantSyncData thing;
String[] messenger = thing.GetMessenger();
Returns
| Type | Description |
| String[] |
GetParticipantStatus()
Declaration
Integer GetParticipantStatus() Examples
NSParticipantSyncData thing;
Integer participantStatus = thing.GetParticipantStatus();
Returns
| Type | Description |
| Integer | The appointment status for this participant. See <xref href="CRMScript.NetServer.AppointmentStatus" data-throw-if-not-resolved="false"></xref> |
GetPersonAcademicTitle()
Declaration
String GetPersonAcademicTitle() Examples
NSParticipantSyncData thing;
String personAcademicTitle = thing.GetPersonAcademicTitle();
Returns
| Type | Description |
| String | Academic title, populated from Salutation list but can be overwritten with anything at all. |
GetPersonAddress()
Declaration
NSAddressSyncData GetPersonAddress() Examples
NSParticipantSyncData thing;
NSAddressSyncData personAddress = thing.GetPersonAddress();
Returns
| Type | Description |
| NSAddressSyncData |
GetPersonCountry()
Declaration
String GetPersonCountry() Examples
NSParticipantSyncData thing;
String personCountry = thing.GetPersonCountry();
Returns
| Type | Description |
| String | The country this contact person is located in. |
GetPersonFirstName()
Declaration
String GetPersonFirstName() Examples
NSParticipantSyncData thing;
String personFirstName = thing.GetPersonFirstName();
Returns
| Type | Description |
| String | First name. |
GetPersonFormalName()
Gets formal name for a person, as used in labels. (Full name + person title + academic title)
Declaration
String GetPersonFormalName() Examples
NSParticipantSyncData thing;
String personFormalName = thing.GetPersonFormalName();
Returns
| Type | Description |
| String |
GetPersonFullName()
Declaration
String GetPersonFullName() Examples
NSParticipantSyncData thing;
String personFullName = thing.GetPersonFullName();
Returns
| Type | Description |
| String | The person's full name localized to the current culture/country. (internal name used in clients for employees). |
GetPersonId()
Declaration
Integer GetPersonId() Examples
NSParticipantSyncData thing;
Integer personId = thing.GetPersonId();
Returns
| Type | Description |
| Integer | Person ID of person the appointment is with, may be 0 |
GetPersonLastname()
Declaration
String GetPersonLastname() Examples
NSParticipantSyncData thing;
String personLastname = thing.GetPersonLastname();
Returns
| Type | Description |
| String | Last name. |
GetPersonMiddleName()
Declaration
String GetPersonMiddleName() Examples
NSParticipantSyncData thing;
String personMiddleName = thing.GetPersonMiddleName();
Returns
| Type | Description |
| String | Middle name or 'van' etc. |
GetPersonMrmrs()
Declaration
String GetPersonMrmrs() Examples
NSParticipantSyncData thing;
String personMrmrs = thing.GetPersonMrmrs();
Returns
| Type | Description |
| String |
GetPersonPosition()
Declaration
String GetPersonPosition() Examples
NSParticipantSyncData thing;
String personPosition = thing.GetPersonPosition();
Returns
| Type | Description |
| String | The position. This is a predefined SuperOffice value, different from Title. |
GetPersonTitle()
Declaration
String GetPersonTitle() Examples
NSParticipantSyncData thing;
String personTitle = thing.GetPersonTitle();
Returns
| Type | Description |
| String | Title. |
GetPhoneContact()
Declaration
String[] GetPhoneContact() Examples
NSParticipantSyncData thing;
String[] phoneContact = thing.GetPhoneContact();
Returns
| Type | Description |
| String[] | Returns a collection of office phone numbers that belong to the contact person. |
GetPhoneDirect()
Declaration
String[] GetPhoneDirect() Examples
NSParticipantSyncData thing;
String[] phoneDirect = thing.GetPhoneDirect();
Returns
| Type | Description |
| String[] |
GetPhoneFax()
Returns a collection of fax numbers that belong to the contact person.
Declaration
String[] GetPhoneFax() Examples
NSParticipantSyncData thing;
String[] phoneFax = thing.GetPhoneFax();
Returns
| Type | Description |
| String[] |
GetPhoneMobile()
Returns a collection of mobile phone numbers that belong to the contact person.
Declaration
String[] GetPhoneMobile() Examples
NSParticipantSyncData thing;
String[] phoneMobile = thing.GetPhoneMobile();
Returns
| Type | Description |
| String[] |
GetPhonePrivate()
Returns a collection of phone numbers that belong to the contact person.
Declaration
String[] GetPhonePrivate() Examples
NSParticipantSyncData thing;
String[] phonePrivate = thing.GetPhonePrivate();
Returns
| Type | Description |
| String[] |
GetPostalAddress()
Declaration
NSAddressSyncData GetPostalAddress() Examples
NSParticipantSyncData thing;
NSAddressSyncData postalAddress = thing.GetPostalAddress();
Returns
| Type | Description |
| NSAddressSyncData |
GetStreetAddress()
Declaration
NSAddressSyncData GetStreetAddress() Examples
NSParticipantSyncData thing;
NSAddressSyncData streetAddress = thing.GetStreetAddress();
Returns
| Type | Description |
| NSAddressSyncData |
GetUrl()
Declaration
String[] GetUrl() Examples
NSParticipantSyncData thing;
String[] url = thing.GetUrl();
Returns
| Type | Description |
| String[] | The URLs related to this person. |
GetVoip()
Declaration
String[] GetVoip() Examples
NSParticipantSyncData thing;
String[] voip = thing.GetVoip();
Returns
| Type | Description |
| String[] |
SetContactBusiness(String)
Declaration
Void SetContactBusiness(String contactBusiness) Examples
NSParticipantSyncData thing;
String contactBusiness;
thing.SetContactBusiness(contactBusiness);
Parameters
| Type | Name | Description |
| String | contactBusiness | The business that the contact is associated with. |
Returns
| Type | Description |
| Void |
SetContactCategory(String)
The GUI forces the user to enter a category type
Declaration
Void SetContactCategory(String contactCategory) Examples
NSParticipantSyncData thing;
String contactCategory;
thing.SetContactCategory(contactCategory);
Parameters
| Type | Name | Description |
| String | contactCategory | The category that is set on the company. |
Returns
| Type | Description |
| Void |
SetContactCountry(String)
Declaration
Void SetContactCountry(String contactCountry) Examples
NSParticipantSyncData thing;
String contactCountry;
thing.SetContactCountry(contactCountry);
Parameters
| Type | Name | Description |
| String | contactCountry |
Returns
| Type | Description |
| Void |
SetContactDepartment(String)
Declaration
Void SetContactDepartment(String contactDepartment) Examples
NSParticipantSyncData thing;
String contactDepartment;
thing.SetContactDepartment(contactDepartment);
Parameters
| Type | Name | Description |
| String | contactDepartment | Department. |
Returns
| Type | Description |
| Void |
SetContactFullName(String)
Declaration
Void SetContactFullName(String contactFullName) Examples
NSParticipantSyncData thing;
String contactFullName;
thing.SetContactFullName(contactFullName);
Parameters
| Type | Name | Description |
| String | contactFullName |
Returns
| Type | Description |
| Void |
SetContactId(Integer)
Declaration
Void SetContactId(Integer contactId) Examples
NSParticipantSyncData thing;
Integer contactId;
thing.SetContactId(contactId);
Parameters
| Type | Name | Description |
| Integer | contactId | Contact ID of owning contact, may be 0 |
Returns
| Type | Description |
| Void |
SetContactName(String)
Declaration
Void SetContactName(String contactName) Examples
NSParticipantSyncData thing;
String contactName;
thing.SetContactName(contactName);
Parameters
| Type | Name | Description |
| String | contactName | Contact name. |
Returns
| Type | Description |
| Void |
SetContactUrl(String[])
Declaration
Void SetContactUrl(String[] contactUrl) Examples
NSParticipantSyncData thing;
String[] contactUrl;
thing.SetContactUrl(contactUrl);
Parameters
| Type | Name | Description |
| String[] | contactUrl | The contact's internet addresses. |
Returns
| Type | Description |
| Void |
SetCountry(String)
Declaration
Void SetCountry(String country) Examples
NSParticipantSyncData thing;
String country;
thing.SetCountry(country);
Parameters
| Type | Name | Description |
| String | country | The country this contact is located in. |
Returns
| Type | Description |
| Void |
SetEMail(String[])
Declaration
Void SetEMail(String[] eMail) Examples
NSParticipantSyncData thing;
String[] eMail;
thing.SetEMail(eMail);
Parameters
| Type | Name | Description |
| String[] |
Returns
| Type | Description |
| Void |
SetMessenger(String[])
Declaration
Void SetMessenger(String[] messenger) Examples
NSParticipantSyncData thing;
String[] messenger;
thing.SetMessenger(messenger);
Parameters
| Type | Name | Description |
| String[] | messenger |
Returns
| Type | Description |
| Void |
SetParticipantStatus(Integer)
Declaration
Void SetParticipantStatus(Integer participantStatus) Examples
NSParticipantSyncData thing;
Integer participantStatus;
thing.SetParticipantStatus(participantStatus);
Parameters
| Type | Name | Description |
| Integer | participantStatus | The appointment status for this participant. See <xref href="CRMScript.NetServer.AppointmentStatus" data-throw-if-not-resolved="false"></xref>. |
Returns
| Type | Description |
| Void |
SetPersonAcademicTitle(String)
Declaration
Void SetPersonAcademicTitle(String personAcademicTitle) Examples
NSParticipantSyncData thing;
String personAcademicTitle;
thing.SetPersonAcademicTitle(personAcademicTitle);
Parameters
| Type | Name | Description |
| String | personAcademicTitle | Academic title, populated from Salutation list but can be overwritten with anything at all. |
Returns
| Type | Description |
| Void |
SetPersonAddress(NSAddressSyncData)
Declaration
Void SetPersonAddress(NSAddressSyncData personAddress) Examples
NSParticipantSyncData thing;
NSAddressSyncData personAddress;
thing.SetPersonAddress(personAddress);
Parameters
| Type | Name | Description |
| NSAddressSyncData | personAddress |
Returns
| Type | Description |
| Void |
SetPersonCountry(String)
Declaration
Void SetPersonCountry(String personCountry) Examples
NSParticipantSyncData thing;
String personCountry;
thing.SetPersonCountry(personCountry);
Parameters
| Type | Name | Description |
| String | personCountry | The country this contact person is located in. |
Returns
| Type | Description |
| Void |
SetPersonFirstName(String)
Declaration
Void SetPersonFirstName(String personFirstName) Examples
NSParticipantSyncData thing;
String personFirstName;
thing.SetPersonFirstName(personFirstName);
Parameters
| Type | Name | Description |
| String | personFirstName | First name. |
Returns
| Type | Description |
| Void |
SetPersonFormalName(String)
Declaration
Void SetPersonFormalName(String personFormalName) Examples
NSParticipantSyncData thing;
String personFormalName;
thing.SetPersonFormalName(personFormalName);
Parameters
| Type | Name | Description |
| String | personFormalName | Gets formal name for a person, as used in labels. (Full name + person title + academic title). |
Returns
| Type | Description |
| Void |
SetPersonFullName(String)
Declaration
Void SetPersonFullName(String personFullName) Examples
NSParticipantSyncData thing;
String personFullName;
thing.SetPersonFullName(personFullName);
Parameters
| Type | Name | Description |
| String | personFullName | The person's full name localized to the current culture/country. (internal name used in clients for employees). |
Returns
| Type | Description |
| Void |
SetPersonId(Integer)
Declaration
Void SetPersonId(Integer personId) Examples
NSParticipantSyncData 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 |
SetPersonLastname(String)
Declaration
Void SetPersonLastname(String personLastname) Examples
NSParticipantSyncData thing;
String personLastname;
thing.SetPersonLastname(personLastname);
Parameters
| Type | Name | Description |
| String | personLastname | Last name. |
Returns
| Type | Description |
| Void |
SetPersonMiddleName(String)
Declaration
Void SetPersonMiddleName(String personMiddleName) Examples
NSParticipantSyncData thing;
String personMiddleName;
thing.SetPersonMiddleName(personMiddleName);
Parameters
| Type | Name | Description |
| String | personMiddleName | Middle name or 'van' etc. |
Returns
| Type | Description |
| Void |
SetPersonMrmrs(String)
Declaration
Void SetPersonMrmrs(String personMrmrs) Examples
NSParticipantSyncData thing;
String personMrmrs;
thing.SetPersonMrmrs(personMrmrs);
Parameters
| Type | Name | Description |
| String | personMrmrs |
Returns
| Type | Description |
| Void |
SetPersonPosition(String)
Declaration
Void SetPersonPosition(String personPosition) Examples
NSParticipantSyncData thing;
String personPosition;
thing.SetPersonPosition(personPosition);
Parameters
| Type | Name | Description |
| String | personPosition | The position. This is a predefined SuperOffice value, different from Title. |
Returns
| Type | Description |
| Void |
SetPersonTitle(String)
Declaration
Void SetPersonTitle(String personTitle) Examples
NSParticipantSyncData thing;
String personTitle;
thing.SetPersonTitle(personTitle);
Parameters
| Type | Name | Description |
| String | personTitle | Title. |
Returns
| Type | Description |
| Void |
SetPhoneContact(String[])
Returns a collection of office phone numbers that belong to the contact person.
Declaration
Void SetPhoneContact(String[] phoneContact) Examples
NSParticipantSyncData thing;
String[] phoneContact;
thing.SetPhoneContact(phoneContact);
Parameters
| Type | Name | Description |
| String[] | phoneContact |
Returns
| Type | Description |
| Void |
SetPhoneDirect(String[])
Declaration
Void SetPhoneDirect(String[] phoneDirect) Examples
NSParticipantSyncData thing;
String[] phoneDirect;
thing.SetPhoneDirect(phoneDirect);
Parameters
| Type | Name | Description |
| String[] | phoneDirect |
Returns
| Type | Description |
| Void |
SetPhoneFax(String[])
Declaration
Void SetPhoneFax(String[] phoneFax) Examples
NSParticipantSyncData thing;
String[] phoneFax;
thing.SetPhoneFax(phoneFax);
Parameters
| Type | Name | Description |
| String[] | phoneFax | A collection of fax numbers that belong to the contact person. |
Returns
| Type | Description |
| Void |
SetPhoneMobile(String[])
Declaration
Void SetPhoneMobile(String[] phoneMobile) Examples
NSParticipantSyncData thing;
String[] phoneMobile;
thing.SetPhoneMobile(phoneMobile);
Parameters
| Type | Name | Description |
| String[] | phoneMobile | A collection of mobile phone numbers that belong to the contact person. |
Returns
| Type | Description |
| Void |
SetPhonePrivate(String[])
Declaration
Void SetPhonePrivate(String[] phonePrivate) Examples
NSParticipantSyncData thing;
String[] phonePrivate;
thing.SetPhonePrivate(phonePrivate);
Parameters
| Type | Name | Description |
| String[] | phonePrivate | A collection of phone numbers that belong to the contact person. |
Returns
| Type | Description |
| Void |
SetPostalAddress(NSAddressSyncData)
Declaration
Void SetPostalAddress(NSAddressSyncData postalAddress) Examples
NSParticipantSyncData thing;
NSAddressSyncData postalAddress;
thing.SetPostalAddress(postalAddress);
Parameters
| Type | Name | Description |
| NSAddressSyncData | postalAddress |
Returns
| Type | Description |
| Void |
SetStreetAddress(NSAddressSyncData)
Declaration
Void SetStreetAddress(NSAddressSyncData streetAddress) Examples
NSParticipantSyncData thing;
NSAddressSyncData streetAddress;
thing.SetStreetAddress(streetAddress);
Parameters
| Type | Name | Description |
| NSAddressSyncData |
Returns
| Type | Description |
| Void |