Class NSSalesActivity
Syntax
Constructors
NSSalesActivity()
Initializes a new instance of the NSSalesActivity class.
Introduced or updated in version: 7
Declaration
NSSalesActivity
Methods
GetRequestedContacts()
Introduced or updated in version: 7
Declaration
NSContact[] GetRequestedContacts()
Returns
Type | Description |
---|---|
NSContact[] | The companies that match the request. |
Examples
NSSalesActivity thing;
NSContact[] requestedContacts = thing.GetRequestedContacts();
GetRequestedPerson()
Introduced or updated in version: 7
Declaration
NSPerson GetRequestedPerson()
Returns
Type | Description |
---|---|
NSPerson | The person that matches the request. |
Examples
NSSalesActivity thing;
NSPerson requestedPerson = thing.GetRequestedPerson();
GetSalesRep()
Introduced or updated in version: 7
Declaration
NSPerson GetSalesRep()
Returns
Type | Description |
---|---|
NSPerson | The sales representative for the person that matches the request. |
Examples
NSSalesActivity thing;
NSPerson salesRep = thing.GetSalesRep();
SetRequestedContacts(NSContact[])
Introduced or updated in version: 7
Declaration
Void SetRequestedContacts(NSContact[] requestedContacts)
Parameters
Type | Name | Description |
---|---|---|
NSContact[] | requestedContacts | The companies that match the request. |
Returns
Type | Description |
---|---|
Void |
Examples
NSSalesActivity thing;
NSContact[] requestedContacts;
thing.SetRequestedContacts(requestedContacts);
SetRequestedPerson(NSPerson)
Introduced or updated in version: 7
Declaration
Void SetRequestedPerson(NSPerson requestedPerson)
Parameters
Type | Name | Description |
---|---|---|
NSPerson | requestedPerson | The person that matches the request. |
Returns
Type | Description |
---|---|
Void |
Examples
NSSalesActivity thing;
NSPerson requestedPerson;
thing.SetRequestedPerson(requestedPerson);
SetSalesRep(NSPerson)
Introduced or updated in version: 7
Declaration
Void SetSalesRep(NSPerson salesRep)
Parameters
Type | Name | Description |
---|---|---|
NSPerson | salesRep | The sales representative for the person that matches the request. |
Returns
Type | Description |
---|---|
Void |
Examples
NSSalesActivity thing;
NSPerson salesRep;
thing.SetSalesRep(salesRep);