Class NSProjectMember
A person can be a member of multiple projects, with a different comment and member type in each project.
Constructors
NSProjectMember()
Initializes a new instance of the NSProjectMember class.
Declaration
NSProjectMember Methods
GetComment()
Declaration
String GetComment() Examples
NSProjectMember thing;
String comment = thing.GetComment();
Returns
| Type | Description |
| String | Comment text on the project membership. |
GetContactDepartment()
Declaration
String GetContactDepartment() Examples
NSProjectMember thing;
String contactDepartment = thing.GetContactDepartment();
Returns
| Type | Description |
| String | Contact department. |
GetContactId()
Declaration
Integer GetContactId() Examples
NSProjectMember thing;
Integer contactId = thing.GetContactId();
Returns
| Type | Description |
| Integer | Contact ID of person who is the project member. |
GetContactName()
Declaration
String GetContactName() Examples
NSProjectMember thing;
String contactName = thing.GetContactName();
Returns
| Type | Description |
| String | Contact name. |
GetCountryId()
Declaration
Integer GetCountryId() Examples
NSProjectMember thing;
Integer countryId = thing.GetCountryId();
Returns
| Type | Description |
| Integer | Country. |
GetEmailAddress()
Declaration
String GetEmailAddress() Examples
NSProjectMember thing;
String emailAddress = thing.GetEmailAddress();
Returns
| Type | Description |
| String | The email address. |
GetEmailAddressName()
Declaration
String GetEmailAddressName() Examples
NSProjectMember thing;
String emailAddressName = thing.GetEmailAddressName();
Returns
| Type | Description |
| String | The email address description. |
GetEmailId()
Declaration
Integer GetEmailId() Examples
NSProjectMember thing;
Integer emailId = thing.GetEmailId();
Returns
| Type | Description |
| Integer | The person's email address Id. |
GetFirstname()
Declaration
String GetFirstname() Examples
NSProjectMember thing;
String firstname = thing.GetFirstname();
Returns
| Type | Description |
| String | First name. |
GetFullName()
Declaration
String GetFullName() Examples
NSProjectMember thing;
String fullName = thing.GetFullName();
Returns
| Type | Description |
| String | The person's full name localized to the current culture/country. (internal name used in clients for employees). |
GetLastname()
Declaration
String GetLastname() Examples
NSProjectMember thing;
String lastname = thing.GetLastname();
Returns
| Type | Description |
| String | Last name. |
GetMiddleName()
Declaration
String GetMiddleName() Examples
NSProjectMember thing;
String middleName = thing.GetMiddleName();
Returns
| Type | Description |
| String | Middle name or 'van' etc. |
GetMrmrs()
Declaration
String GetMrmrs() Examples
NSProjectMember thing;
String mrmrs = thing.GetMrmrs();
Returns
| Type | Description |
| String | For example, Mrs, Dr, Ms. |
GetPersonId()
Declaration
Integer GetPersonId() Examples
NSProjectMember thing;
Integer personId = thing.GetPersonId();
Returns
| Type | Description |
| Integer | The person's ID; primary key. |
GetPhone()
Declaration
String GetPhone() Examples
NSProjectMember thing;
String phone = thing.GetPhone();
Returns
| Type | Description |
| String | Phone number. |
GetPhoneId()
Declaration
Integer GetPhoneId() Examples
NSProjectMember thing;
Integer phoneId = thing.GetPhoneId();
Returns
| Type | Description |
| Integer | The phone Id. |
GetProjectId()
Declaration
Integer GetProjectId() Examples
NSProjectMember thing;
Integer projectId = thing.GetProjectId();
Returns
| Type | Description |
| Integer | Parent project* the project this project member belongs to. |
GetProjectmemberId()
Declaration
Integer GetProjectmemberId() Examples
NSProjectMember thing;
Integer projectmemberId = thing.GetProjectmemberId();
Returns
| Type | Description |
| Integer | Primary key. |
GetProjectMemberTypeId()
Declaration
Integer GetProjectMemberTypeId() Examples
NSProjectMember thing;
Integer projectMemberTypeId = thing.GetProjectMemberTypeId();
Returns
| Type | Description |
| Integer | NSProjectMember Type ID from the ProjectMemberType list. |
GetProjectMemberTypeName()
Declaration
String GetProjectMemberTypeName() Examples
NSProjectMember thing;
String projectMemberTypeName = thing.GetProjectMemberTypeName();
Returns
| Type | Description |
| String | The project member type name 'secretary', 'member', etc. |
GetProjectName()
Declaration
String GetProjectName() Examples
NSProjectMember thing;
String projectName = thing.GetProjectName();
Returns
| Type | Description |
| String | Name of the project this project member belongs to. |
SetComment(String)
Declaration
Void SetComment(String comment) Examples
NSProjectMember thing;
String comment;
thing.SetComment(comment);
Parameters
| Type | Name | Description |
| String | comment | Comment text on the project membership. |
Returns
| Type | Description |
| Void |
SetContactDepartment(String)
Declaration
Void SetContactDepartment(String contactDepartment) Examples
NSProjectMember thing;
String contactDepartment;
thing.SetContactDepartment(contactDepartment);
Parameters
| Type | Name | Description |
| String | contactDepartment | Contact department. |
Returns
| Type | Description |
| Void |
SetContactId(Integer)
Declaration
Void SetContactId(Integer contactId) Examples
NSProjectMember thing;
Integer contactId;
thing.SetContactId(contactId);
Parameters
| Type | Name | Description |
| Integer | contactId | Contact ID of person who is the project member. |
Returns
| Type | Description |
| Void |
SetContactName(String)
Declaration
Void SetContactName(String contactName) Examples
NSProjectMember thing;
String contactName;
thing.SetContactName(contactName);
Parameters
| Type | Name | Description |
| String | contactName | Contact name. |
Returns
| Type | Description |
| Void |
SetCountryId(Integer)
Declaration
Void SetCountryId(Integer countryId) Examples
NSProjectMember thing;
Integer countryId;
thing.SetCountryId(countryId);
Parameters
| Type | Name | Description |
| Integer | countryId | Country. |
Returns
| Type | Description |
| Void |
SetEmailAddress(String)
Declaration
Void SetEmailAddress(String emailAddress) Examples
NSProjectMember thing;
String emailAddress;
thing.SetEmailAddress(emailAddress);
Parameters
| Type | Name | Description |
| String | emailAddress | The email address. |
Returns
| Type | Description |
| Void |
SetEmailAddressName(String)
Declaration
Void SetEmailAddressName(String emailAddressName) Examples
NSProjectMember thing;
String emailAddressName;
thing.SetEmailAddressName(emailAddressName);
Parameters
| Type | Name | Description |
| String | emailAddressName | The email address description. |
Returns
| Type | Description |
| Void |
SetEmailId(Integer)
Declaration
Void SetEmailId(Integer emailId) Examples
NSProjectMember thing;
Integer emailId;
thing.SetEmailId(emailId);
Parameters
| Type | Name | Description |
| Integer | emailId | The person's email address Id. |
Returns
| Type | Description |
| Void |
SetFirstname(String)
Declaration
Void SetFirstname(String firstname) Examples
NSProjectMember thing;
String firstname;
thing.SetFirstname(firstname);
Parameters
| Type | Name | Description |
| String | firstname | First name. |
Returns
| Type | Description |
| Void |
SetFullName(String)
Declaration
Void SetFullName(String fullName) Examples
NSProjectMember thing;
String fullName;
thing.SetFullName(fullName);
Parameters
| Type | Name | Description |
| String | fullName | The person's full name localized to the current culture/country. (internal name used in clients for employees). |
Returns
| Type | Description |
| Void |
SetLastname(String)
Declaration
Void SetLastname(String lastname) Examples
NSProjectMember thing;
String lastname;
thing.SetLastname(lastname);
Parameters
| Type | Name | Description |
| String | lastname | Last name. |
Returns
| Type | Description |
| Void |
SetMiddleName(String)
Declaration
Void SetMiddleName(String middleName) Examples
NSProjectMember thing;
String middleName;
thing.SetMiddleName(middleName);
Parameters
| Type | Name | Description |
| String | middleName | Middle name or 'van' etc. |
Returns
| Type | Description |
| Void |
SetMrmrs(String)
Declaration
Void SetMrmrs(String mrmrs) Examples
NSProjectMember thing;
String mrmrs;
thing.SetMrmrs(mrmrs);
Parameters
| Type | Name | Description |
| String | mrmrs | For example, Mrs, Dr, Ms. |
Returns
| Type | Description |
| Void |
SetPersonId(Integer)
Declaration
Void SetPersonId(Integer personId) Examples
NSProjectMember thing;
Integer personId;
thing.SetPersonId(personId);
Parameters
| Type | Name | Description |
| Integer | personId | The person's ID; primary key. |
Returns
| Type | Description |
| Void |
SetPhone(String)
Declaration
Void SetPhone(String phone) Examples
NSProjectMember thing;
String phone;
thing.SetPhone(phone);
Parameters
| Type | Name | Description |
| String | phone | Phone number. |
Returns
| Type | Description |
| Void |
SetPhoneId(Integer)
Declaration
Void SetPhoneId(Integer phoneId) Examples
NSProjectMember thing;
Integer phoneId;
thing.SetPhoneId(phoneId);
Parameters
| Type | Name | Description |
| Integer | phoneId | The phone Id. |
Returns
| Type | Description |
| Void |
SetProjectId(Integer)
Declaration
Void SetProjectId(Integer projectId) Examples
NSProjectMember thing;
Integer projectId;
thing.SetProjectId(projectId);
Parameters
| Type | Name | Description |
| Integer | projectId | Parent project* the project this project member belongs to. |
Returns
| Type | Description |
| Void |
SetProjectmemberId(Integer)
Declaration
Void SetProjectmemberId(Integer projectmemberId) Examples
NSProjectMember thing;
Integer projectmemberId;
thing.SetProjectmemberId(projectmemberId);
Parameters
| Type | Name | Description |
| Integer | projectmemberId | Primary key. |
Returns
| Type | Description |
| Void |
SetProjectMemberTypeId(Integer)
Declaration
Void SetProjectMemberTypeId(Integer projectMemberTypeId) Examples
NSProjectMember thing;
Integer projectMemberTypeId;
thing.SetProjectMemberTypeId(projectMemberTypeId);
Parameters
| Type | Name | Description |
| Integer | projectMemberTypeId | NSProjectMember Type ID from the ProjectMemberType list. |
Returns
| Type | Description |
| Void |
SetProjectMemberTypeName(String)
Declaration
Void SetProjectMemberTypeName(String projectMemberTypeName) Examples
NSProjectMember thing;
String projectMemberTypeName;
thing.SetProjectMemberTypeName(projectMemberTypeName);
Parameters
| Type | Name | Description |
| String | projectMemberTypeName | The project members type name 'secretary', 'member', etc. |
Returns
| Type | Description |
| Void |