Class NSParticipantInfo
Represents an appointment participant.
Syntax
Constructors
NSParticipantInfo()
Initializes a new instance of the NSParticipantInfo class.
Declaration
NSParticipantInfo
Methods
GetAssociateId()
Represents an appointment participant.
Declaration
Integer GetAssociateId()
Returns
Type | Description |
---|---|
Integer | Associate ID of the participant if the participant is an associate (or resource). |
Examples
NSParticipantInfo thing;
Integer associateId = thing.GetAssociateId();
GetContactId()
Represents an appointment participant.
Declaration
Integer GetContactId()
Returns
Type | Description |
---|---|
Integer | Contact ID of the participant if the participant is an associate or person. |
Examples
NSParticipantInfo thing;
Integer contactId = thing.GetContactId();
GetEmailId()
Represents an appointment participant.
Declaration
Integer GetEmailId()
Returns
Type | Description |
---|---|
Integer | The email ID of the email belonging to the appointment record belonging to this person. |
Examples
NSParticipantInfo thing;
Integer emailId = thing.GetEmailId();
GetInvitationStatus()
Represents an appointment participant.
Declaration
Integer GetInvitationStatus()
Returns
Type | Description |
---|---|
Integer | The participant status for the appointment. |
Examples
NSParticipantInfo thing;
Integer invitationStatus = thing.GetInvitationStatus();
GetPersonId()
Represents an appointment participant.
Declaration
Integer GetPersonId()
Returns
Type | Description |
---|---|
Integer | Person ID of the participant if the participant is a person. |
Examples
NSParticipantInfo thing;
Integer personId = thing.GetPersonId();
GetSendEmail()
Represents an appointment participant.
Declaration
Bool GetSendEmail()
Returns
Type | Description |
---|---|
Bool | True if the participant has been sent an email or should be sent an email. |
Examples
NSParticipantInfo thing;
Bool sendEmail = thing.GetSendEmail();
SetAssociateId(Integer)
Represents an appointment participant.
Declaration
Void SetAssociateId(Integer associateId)
Parameters
Type | Name | Description |
---|---|---|
Integer | associateId | Associate ID of the participant if the participant is an associate (or resource). |
Returns
Type | Description |
---|---|
Void |
Examples
NSParticipantInfo thing;
Integer associateId;
thing.SetAssociateId(associateId);
SetContactId(Integer)
Represents an appointment participant.
Declaration
Void SetContactId(Integer contactId)
Parameters
Type | Name | Description |
---|---|---|
Integer | contactId | Contact ID of the participant if the participant is an associate or person. |
Returns
Type | Description |
---|---|
Void |
Examples
NSParticipantInfo thing;
Integer contactId;
thing.SetContactId(contactId);
SetEmailId(Integer)
Represents an appointment participant.
Declaration
Void SetEmailId(Integer emailId)
Parameters
Type | Name | Description |
---|---|---|
Integer | emailId | The email ID of the email belonging to the appointment record belonging to this person. |
Returns
Type | Description |
---|---|
Void |
Examples
NSParticipantInfo thing;
Integer emailId;
thing.SetEmailId(emailId);
SetInvitationStatus(Integer)
Represents an appointment participant.
Declaration
Void SetInvitationStatus(Integer invitationStatus)
Parameters
Type | Name | Description |
---|---|---|
Integer | invitationStatus | The participant status for the appointment. See InvitationStatus. |
Returns
Type | Description |
---|---|
Void |
Examples
NSParticipantInfo thing;
Integer invitationStatus;
thing.SetInvitationStatus(invitationStatus);
SetPersonId(Integer)
Represents an appointment participant.
Declaration
Void SetPersonId(Integer personId)
Parameters
Type | Name | Description |
---|---|---|
Integer | personId | Person ID of the participant if the participant is a person. |
Returns
Type | Description |
---|---|
Void |
Examples
NSParticipantInfo thing;
Integer personId;
thing.SetPersonId(personId);
SetSendEmail(Bool)
Represents an appointment participant.
Declaration
Void SetSendEmail(Bool sendEmail)
Parameters
Type | Name | Description |
---|---|---|
Bool | sendEmail | True if the participant has been sent an email or should be sent an email. |
Returns
Type | Description |
---|---|
Void |
Examples
NSParticipantInfo thing;
Bool sendEmail;
thing.SetSendEmail(sendEmail);