Show / Hide Table of Contents

Class NSForeignAppEntity

Carrier object for ForeignAppEntity.n

Syntax

Constructors

NSForeignAppEntity()

Initializes a new instance of the NSForeignAppEntity class.

Declaration
NSForeignAppEntity

Methods

GetCreatedBy()

Carrier object for ForeignAppEntity.n

Declaration
NSAssociate GetCreatedBy()
Returns
Type Description
NSAssociate

The person that created the foreign application.

Examples
NSForeignAppEntity thing;
NSAssociate createdBy = thing.GetCreatedBy();

GetCreatedDate()

Carrier object for ForeignAppEntity.n

Declaration
DateTime GetCreatedDate()
Returns
Type Description
DateTime

Registered when.

Examples
NSForeignAppEntity thing;
DateTime createdDate = thing.GetCreatedDate();

GetDevices()

Carrier object for ForeignAppEntity.n

Declaration
NSForeignDevice[] GetDevices()
Returns
Type Description
NSForeignDevice[]

The devices that belong to this foreign app.

Examples
NSForeignAppEntity thing;
NSForeignDevice[] devices = thing.GetDevices();

GetForeignAppId()

Carrier object for ForeignAppEntity.n

Declaration
Integer GetForeignAppId()
Returns
Type Description
Integer

Primary key.

Examples
NSForeignAppEntity thing;
Integer foreignAppId = thing.GetForeignAppId();

GetName()

Carrier object for ForeignAppEntity.n

Declaration
String GetName()
Returns
Type Description
String

Name of foreign application.

Examples
NSForeignAppEntity thing;
String name = thing.GetName();

GetUpdatedBy()

Carrier object for ForeignAppEntity.n

Declaration
NSAssociate GetUpdatedBy()
Returns
Type Description
NSAssociate

The person that last updated this foreign application.

Examples
NSForeignAppEntity thing;
NSAssociate updatedBy = thing.GetUpdatedBy();

GetUpdatedDate()

Carrier object for ForeignAppEntity.n

Declaration
DateTime GetUpdatedDate()
Returns
Type Description
DateTime

Last updated when.

Examples
NSForeignAppEntity thing;
DateTime updatedDate = thing.GetUpdatedDate();

SetCreatedBy(NSAssociate)

Carrier object for ForeignAppEntity.n

Declaration
Void SetCreatedBy(NSAssociate createdBy)
Parameters
Type Name Description
NSAssociate createdBy

The person that created the foreign application.

Returns
Type Description
Void
Examples
NSForeignAppEntity thing;
NSAssociate createdBy;
thing.SetCreatedBy(createdBy);

SetCreatedDate(DateTime)

Carrier object for ForeignAppEntity.n

Declaration
Void SetCreatedDate(DateTime createdDate)
Parameters
Type Name Description
DateTime createdDate

Registered when.

Returns
Type Description
Void
Examples
NSForeignAppEntity thing;
DateTime createdDate;
thing.SetCreatedDate(createdDate);

SetDevices(NSForeignDevice[])

Carrier object for ForeignAppEntity.n

Declaration
Void SetDevices(NSForeignDevice[] devices)
Parameters
Type Name Description
NSForeignDevice[] devices

The devices that belong to this foreign app.

Returns
Type Description
Void
Examples
NSForeignAppEntity thing;
NSForeignDevice[] devices;
thing.SetDevices(devices);

SetForeignAppId(Integer)

Carrier object for ForeignAppEntity.n

Declaration
Void SetForeignAppId(Integer foreignAppId)
Parameters
Type Name Description
Integer foreignAppId

Primary key.

Returns
Type Description
Void
Examples
NSForeignAppEntity thing;
Integer foreignAppId;
thing.SetForeignAppId(foreignAppId);

SetName(String)

Carrier object for ForeignAppEntity.n

Declaration
Void SetName(String name)
Parameters
Type Name Description
String name

Name of foreign application.

Returns
Type Description
Void
Examples
NSForeignAppEntity thing;
String name;
thing.SetName(name);

SetUpdatedBy(NSAssociate)

Carrier object for ForeignAppEntity.n

Declaration
Void SetUpdatedBy(NSAssociate updatedBy)
Parameters
Type Name Description
NSAssociate updatedBy

The person that last updated this foreign application.

Returns
Type Description
Void
Examples
NSForeignAppEntity thing;
NSAssociate updatedBy;
thing.SetUpdatedBy(updatedBy);

SetUpdatedDate(DateTime)

Carrier object for ForeignAppEntity.n

Declaration
Void SetUpdatedDate(DateTime updatedDate)
Parameters
Type Name Description
DateTime updatedDate

Last updated when.

Returns
Type Description
Void
Examples
NSForeignAppEntity thing;
DateTime updatedDate;
thing.SetUpdatedDate(updatedDate);
In This Article
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top