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