Class NSForeignAppEntity
Carrier object for ForeignAppEntity.n
Constructors
NSForeignAppEntity()
Initializes a new instance of the NSForeignAppEntity class.
Declaration
NSForeignAppEntity Methods
GetCreatedBy()
Declaration
NSAssociate GetCreatedBy() Examples
NSForeignAppEntity thing;
NSAssociate createdBy = thing.GetCreatedBy();
Returns
| Type | Description |
| NSAssociate | The person that created the foreign application. |
GetCreatedDate()
Declaration
DateTime GetCreatedDate() Examples
NSForeignAppEntity thing;
DateTime createdDate = thing.GetCreatedDate();
Returns
| Type | Description |
| DateTime | Registered when. |
GetDevices()
Declaration
NSForeignDevice[] GetDevices() Examples
NSForeignAppEntity thing;
NSForeignDevice[] devices = thing.GetDevices();
Returns
| Type | Description |
| NSForeignDevice[] | The devices that belong to this foreign app. |
GetForeignAppId()
Declaration
Integer GetForeignAppId() Examples
NSForeignAppEntity thing;
Integer foreignAppId = thing.GetForeignAppId();
Returns
| Type | Description |
| Integer | Primary key. |
GetName()
Declaration
String GetName() Examples
NSForeignAppEntity thing;
String name = thing.GetName();
Returns
| Type | Description |
| String | Name of foreign application. |
GetUpdatedBy()
Declaration
NSAssociate GetUpdatedBy() Examples
NSForeignAppEntity thing;
NSAssociate updatedBy = thing.GetUpdatedBy();
Returns
| Type | Description |
| NSAssociate | The person that last updated this foreign application. |
GetUpdatedDate()
Declaration
DateTime GetUpdatedDate() Examples
NSForeignAppEntity thing;
DateTime updatedDate = thing.GetUpdatedDate();
Returns
| Type | Description |
| DateTime | Last updated when. |
SetCreatedBy(NSAssociate)
Declaration
Void SetCreatedBy(NSAssociate createdBy) Examples
NSForeignAppEntity thing;
NSAssociate createdBy;
thing.SetCreatedBy(createdBy);
Parameters
| Type | Name | Description |
| NSAssociate | createdBy | The person that created the foreign application. |
Returns
| Type | Description |
| Void |
SetCreatedDate(DateTime)
Declaration
Void SetCreatedDate(DateTime createdDate) Examples
NSForeignAppEntity thing;
DateTime createdDate;
thing.SetCreatedDate(createdDate);
Parameters
| Type | Name | Description |
| DateTime | createdDate | Registered when. |
Returns
| Type | Description |
| Void |
SetDevices(NSForeignDevice[])
Declaration
Void SetDevices(NSForeignDevice[] devices) Examples
NSForeignAppEntity thing;
NSForeignDevice[] devices;
thing.SetDevices(devices);
Parameters
| Type | Name | Description |
| NSForeignDevice[] | devices | The devices that belong to this foreign app. |
Returns
| Type | Description |
| Void |
SetForeignAppId(Integer)
Declaration
Void SetForeignAppId(Integer foreignAppId) Examples
NSForeignAppEntity thing;
Integer foreignAppId;
thing.SetForeignAppId(foreignAppId);
Parameters
| Type | Name | Description |
| Integer | foreignAppId | Primary key. |
Returns
| Type | Description |
| Void |
SetName(String)
Declaration
Void SetName(String name) Examples
NSForeignAppEntity thing;
String name;
thing.SetName(name);
Parameters
| Type | Name | Description |
| String | name | Name of foreign application. |
Returns
| Type | Description |
| Void |
SetUpdatedBy(NSAssociate)
Declaration
Void SetUpdatedBy(NSAssociate updatedBy) Examples
NSForeignAppEntity thing;
NSAssociate updatedBy;
thing.SetUpdatedBy(updatedBy);
Parameters
| Type | Name | Description |
| NSAssociate | updatedBy | The person that last updated this foreign application. |
Returns
| Type | Description |
| Void |