Class NSSaleStakeholder
Syntax
Constructors
NSSaleStakeholder()
Initializes a new instance of the NSSaleStakeholder class.
Introduced or updated in version: 7.1.1
Declaration
NSSaleStakeholder
Methods
GetComment()
Introduced or updated in version: 7.1.1
Declaration
String GetComment()
Returns
Type | Description |
---|---|
String | Optional comment text. |
Examples
NSSaleStakeholder thing;
String comment = thing.GetComment();
GetContactId()
Introduced or updated in version: 7.1.1
Declaration
Integer GetContactId()
Returns
Type | Description |
---|---|
Integer | Contact ID of person or contact who is the sale stakeholder. |
Examples
NSSaleStakeholder thing;
Integer contactId = thing.GetContactId();
GetContactName()
Introduced or updated in version: 7.1.1
Declaration
String GetContactName()
Returns
Type | Description |
---|---|
String | Contact name. |
Examples
NSSaleStakeholder thing;
String contactName = thing.GetContactName();
GetCountryId()
Introduced or updated in version: 7.1.1
Declaration
Integer GetCountryId()
Returns
Type | Description |
---|---|
Integer | Country ID, primary key. |
Examples
NSSaleStakeholder thing;
Integer countryId = thing.GetCountryId();
GetEmailAddress()
Introduced or updated in version: 7.1.1
Declaration
String GetEmailAddress()
Returns
Type | Description |
---|---|
String | Email address. |
Examples
NSSaleStakeholder thing;
String emailAddress = thing.GetEmailAddress();
GetEmailDescription()
Introduced or updated in version: 7.1.1
Declaration
String GetEmailDescription()
Returns
Type | Description |
---|---|
String | Email description. |
Examples
NSSaleStakeholder thing;
String emailDescription = thing.GetEmailDescription();
GetEmailId()
Introduced or updated in version: 7.1.1
Declaration
Integer GetEmailId()
Returns
Type | Description |
---|---|
Integer | Email address ID, Primary key. |
Examples
NSSaleStakeholder thing;
Integer emailId = thing.GetEmailId();
GetFirstname()
Introduced or updated in version: 7.1.1
Declaration
String GetFirstname()
Returns
Type | Description |
---|---|
String | First name. |
Examples
NSSaleStakeholder thing;
String firstname = thing.GetFirstname();
GetLastname()
Introduced or updated in version: 7.1.1
Declaration
String GetLastname()
Returns
Type | Description |
---|---|
String | Last name. |
Examples
NSSaleStakeholder thing;
String lastname = thing.GetLastname();
GetMiddleName()
Introduced or updated in version: 7.1.1
Declaration
String GetMiddleName()
Returns
Type | Description |
---|---|
String | Middle name or 'van' etc. |
Examples
NSSaleStakeholder thing;
String middleName = thing.GetMiddleName();
GetMrmrs()
Introduced or updated in version: 7.1.1
Declaration
String GetMrmrs()
Returns
Type | Description |
---|---|
String | Mrs, Mr, Ms, Dr. |
Examples
NSSaleStakeholder thing;
String mrmrs = thing.GetMrmrs();
GetPersonId()
Introduced or updated in version: 7.1.1
Declaration
Integer GetPersonId()
Returns
Type | Description |
---|---|
Integer | Person ID, Primary key. |
Examples
NSSaleStakeholder thing;
Integer personId = thing.GetPersonId();
GetPhone()
Introduced or updated in version: 7.1.1
Declaration
String GetPhone()
Returns
Type | Description |
---|---|
String | Phone number. |
Examples
NSSaleStakeholder thing;
String phone = thing.GetPhone();
GetPhoneId()
Introduced or updated in version: 7.1.1
Declaration
Integer GetPhoneId()
Returns
Type | Description |
---|---|
Integer | Primary key. |
Examples
NSSaleStakeholder thing;
Integer phoneId = thing.GetPhoneId();
GetRank()
Introduced or updated in version: 7.1.1
Declaration
Integer GetRank()
Returns
Type | Description |
---|---|
Integer | Rank in list of stakeholders. |
Examples
NSSaleStakeholder thing;
Integer rank = thing.GetRank();
GetSaleId()
Introduced or updated in version: 7.1.1
Declaration
Integer GetSaleId()
Returns
Type | Description |
---|---|
Integer | Parent sale. |
Examples
NSSaleStakeholder thing;
Integer saleId = thing.GetSaleId();
GetSaleStakeholderId()
Introduced or updated in version: 7.1.1
Declaration
Integer GetSaleStakeholderId()
Returns
Type | Description |
---|---|
Integer | Primary key. |
Examples
NSSaleStakeholder thing;
Integer saleStakeholderId = thing.GetSaleStakeholderId();
GetStakeholderRoleId()
Introduced or updated in version: 7.1.1
Declaration
Integer GetStakeholderRoleId()
Returns
Type | Description |
---|---|
Integer | Stakeholder role list ID, Primary key. |
Examples
NSSaleStakeholder thing;
Integer stakeholderRoleId = thing.GetStakeholderRoleId();
GetStakeholderRoleName()
Introduced or updated in version: 7.1.1
Declaration
String GetStakeholderRoleName()
Returns
Type | Description |
---|---|
String | Stakeholder role name. |
Examples
NSSaleStakeholder thing;
String stakeholderRoleName = thing.GetStakeholderRoleName();
SetComment(String)
Introduced or updated in version: 7.1.1
Declaration
Void SetComment(String comment)
Parameters
Type | Name | Description |
---|---|---|
String | comment | Optional comment text. |
Returns
Type | Description |
---|---|
Void |
Examples
NSSaleStakeholder thing;
String comment;
thing.SetComment(comment);
SetContactId(Integer)
Introduced or updated in version: 7.1.1
Declaration
Void SetContactId(Integer contactId)
Parameters
Type | Name | Description |
---|---|---|
Integer | contactId | Contact ID of person or contact who is the sale stakeholder. |
Returns
Type | Description |
---|---|
Void |
Examples
NSSaleStakeholder thing;
Integer contactId;
thing.SetContactId(contactId);
SetContactName(String)
Introduced or updated in version: 7.1.1
Declaration
Void SetContactName(String contactName)
Parameters
Type | Name | Description |
---|---|---|
String | contactName | Contact name. |
Returns
Type | Description |
---|---|
Void |
Examples
NSSaleStakeholder thing;
String contactName;
thing.SetContactName(contactName);
SetCountryId(Integer)
Introduced or updated in version: 7.1.1
Declaration
Void SetCountryId(Integer countryId)
Parameters
Type | Name | Description |
---|---|---|
Integer | countryId | Country ID, primary key. |
Returns
Type | Description |
---|---|
Void |
Examples
NSSaleStakeholder thing;
Integer countryId;
thing.SetCountryId(countryId);
SetEmailAddress(String)
Introduced or updated in version: 7.1.1
Declaration
Void SetEmailAddress(String emailAddress)
Parameters
Type | Name | Description |
---|---|---|
String | emailAddress | Email address. |
Returns
Type | Description |
---|---|
Void |
Examples
NSSaleStakeholder thing;
String emailAddress;
thing.SetEmailAddress(emailAddress);
SetEmailDescription(String)
Introduced or updated in version: 7.1.1
Declaration
Void SetEmailDescription(String emailDescription)
Parameters
Type | Name | Description |
---|---|---|
String | emailDescription | Email description. |
Returns
Type | Description |
---|---|
Void |
Examples
NSSaleStakeholder thing;
String emailDescription;
thing.SetEmailDescription(emailDescription);
SetEmailId(Integer)
Introduced or updated in version: 7.1.1
Declaration
Void SetEmailId(Integer emailId)
Parameters
Type | Name | Description |
---|---|---|
Integer | emailId | Email address ID, Primary key. |
Returns
Type | Description |
---|---|
Void |
Examples
NSSaleStakeholder thing;
Integer emailId;
thing.SetEmailId(emailId);
SetFirstname(String)
Introduced or updated in version: 7.1.1
Declaration
Void SetFirstname(String firstname)
Parameters
Type | Name | Description |
---|---|---|
String | firstname | First name. |
Returns
Type | Description |
---|---|
Void |
Examples
NSSaleStakeholder thing;
String firstname;
thing.SetFirstname(firstname);
SetLastname(String)
Introduced or updated in version: 7.1.1
Declaration
Void SetLastname(String lastname)
Parameters
Type | Name | Description |
---|---|---|
String | lastname | Last name. |
Returns
Type | Description |
---|---|
Void |
Examples
NSSaleStakeholder thing;
String lastname;
thing.SetLastname(lastname);
SetMiddleName(String)
Introduced or updated in version: 7.1.1
Declaration
Void SetMiddleName(String middleName)
Parameters
Type | Name | Description |
---|---|---|
String | middleName | Middle name or 'van' etc. |
Returns
Type | Description |
---|---|
Void |
Examples
NSSaleStakeholder thing;
String middleName;
thing.SetMiddleName(middleName);
SetMrmrs(String)
Introduced or updated in version: 7.1.1
Declaration
Void SetMrmrs(String mrmrs)
Parameters
Type | Name | Description |
---|---|---|
String | mrmrs | Mrs, Mr, Ms, Dr. |
Returns
Type | Description |
---|---|
Void |
Examples
NSSaleStakeholder thing;
String mrmrs;
thing.SetMrmrs(mrmrs);
SetPersonId(Integer)
Introduced or updated in version: 7.1.1
Declaration
Void SetPersonId(Integer personId)
Parameters
Type | Name | Description |
---|---|---|
Integer | personId | Person ID, Primary key. |
Returns
Type | Description |
---|---|
Void |
Examples
NSSaleStakeholder thing;
Integer personId;
thing.SetPersonId(personId);
SetPhone(String)
Introduced or updated in version: 7.1.1
Declaration
Void SetPhone(String phone)
Parameters
Type | Name | Description |
---|---|---|
String | phone | Phone number. |
Returns
Type | Description |
---|---|
Void |
Examples
NSSaleStakeholder thing;
String phone;
thing.SetPhone(phone);
SetPhoneId(Integer)
Introduced or updated in version: 7.1.1
Declaration
Void SetPhoneId(Integer phoneId)
Parameters
Type | Name | Description |
---|---|---|
Integer | phoneId | Primary key. |
Returns
Type | Description |
---|---|
Void |
Examples
NSSaleStakeholder thing;
Integer phoneId;
thing.SetPhoneId(phoneId);
SetRank(Integer)
Introduced or updated in version: 7.1.1
Declaration
Void SetRank(Integer rank)
Parameters
Type | Name | Description |
---|---|---|
Integer | rank | Rank in list of stakeholders. |
Returns
Type | Description |
---|---|
Void |
Examples
NSSaleStakeholder thing;
Integer rank;
thing.SetRank(rank);
SetSaleId(Integer)
Introduced or updated in version: 7.1.1
Declaration
Void SetSaleId(Integer saleId)
Parameters
Type | Name | Description |
---|---|---|
Integer | saleId | Parent sale. |
Returns
Type | Description |
---|---|
Void |
Examples
NSSaleStakeholder thing;
Integer saleId;
thing.SetSaleId(saleId);
SetSaleStakeholderId(Integer)
Introduced or updated in version: 7.1.1
Declaration
Void SetSaleStakeholderId(Integer saleStakeholderId)
Parameters
Type | Name | Description |
---|---|---|
Integer | saleStakeholderId | Primary key. |
Returns
Type | Description |
---|---|
Void |
Examples
NSSaleStakeholder thing;
Integer saleStakeholderId;
thing.SetSaleStakeholderId(saleStakeholderId);
SetStakeholderRoleId(Integer)
Introduced or updated in version: 7.1.1
Declaration
Void SetStakeholderRoleId(Integer stakeholderRoleId)
Parameters
Type | Name | Description |
---|---|---|
Integer | stakeholderRoleId | Stakeholder role list ID, Primary key. |
Returns
Type | Description |
---|---|
Void |
Examples
NSSaleStakeholder thing;
Integer stakeholderRoleId;
thing.SetStakeholderRoleId(stakeholderRoleId);
SetStakeholderRoleName(String)
Introduced or updated in version: 7.1.1
Declaration
Void SetStakeholderRoleName(String stakeholderRoleName)
Parameters
Type | Name | Description |
---|---|---|
String | stakeholderRoleName | Stakeholder role name. |
Returns
Type | Description |
---|---|
Void |
Examples
NSSaleStakeholder thing;
String stakeholderRoleName;
thing.SetStakeholderRoleName(stakeholderRoleName);