Show / Hide Table of Contents

Class NSForeignAppEntity

Carrier object for ForeignAppEntity.n

Syntax

Constructors

NSForeignAppEntity()

Initializes a new instance of the NSForeignAppEntity class.

Introduced or updated in version: 7

Declaration
NSForeignAppEntity

Methods

GetCreatedBy()

Introduced or updated in version: 7

Declaration
NSAssociate GetCreatedBy()
Returns
Type Description
NSAssociate

The person that created the foreign application.

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

GetCreatedDate()

Introduced or updated in version: 7

Declaration
DateTime GetCreatedDate()
Returns
Type Description
DateTime

Registered when.

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

GetDevices()

Introduced or updated in version: 7

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

The devices that belong to this foreign app.

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

GetForeignAppId()

Introduced or updated in version: 7

Declaration
Integer GetForeignAppId()
Returns
Type Description
Integer

Primary key.

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

GetName()

Introduced or updated in version: 7

Declaration
String GetName()
Returns
Type Description
String

Name of foreign application.

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

GetUpdatedBy()

Introduced or updated in version: 7

Declaration
NSAssociate GetUpdatedBy()
Returns
Type Description
NSAssociate

The person that last updated this foreign application.

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

GetUpdatedDate()

Introduced or updated in version: 7

Declaration
DateTime GetUpdatedDate()
Returns
Type Description
DateTime

Last updated when.

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

SetCreatedBy(NSAssociate)

Introduced or updated in version: 7

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)

Introduced or updated in version: 7

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[])

Introduced or updated in version: 7

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)

Introduced or updated in version: 7

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)

Introduced or updated in version: 7

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)

Introduced or updated in version: 7

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)

Introduced or updated in version: 7

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);
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top