Class NSSatellite

Constructors

NSSatellite()

Initializes a new instance of the NSSatellite class.

Declaration

NSSatellite

Methods

GetArea()

Declaration

NSArea GetArea()

Examples

NSSatellite thing;
NSArea area = thing.GetArea();

Returns

Type Description
NSArea

GetContact()

Declaration

NSContact GetContact()

Examples

NSSatellite thing;
NSContact contact = thing.GetContact();

Returns

Type Description
NSContact

GetCreated()

Declaration

DateTime GetCreated()

Examples

NSSatellite thing;
DateTime created = thing.GetCreated();

Returns

Type Description
DateTime Registered when.

GetCreatedBy()

Declaration

NSAssociate GetCreatedBy()

Examples

NSSatellite thing;
NSAssociate createdBy = thing.GetCreatedBy();

Returns

Type Description
NSAssociate

GetLicenseOwners()

Declaration

NSLicenseOwner[] GetLicenseOwners()

Examples

NSSatellite thing;
NSLicenseOwner[] licenseOwners = thing.GetLicenseOwners();

Returns

Type Description
NSLicenseOwner[] The restricted and unrestricted module licenses grouped by license owner.

GetSatelliteId()

Declaration

Integer GetSatelliteId()

Examples

NSSatellite thing;
Integer satelliteId = thing.GetSatelliteId();

Returns

Type Description
Integer Primary key.

GetUpdated()

Declaration

DateTime GetUpdated()

Examples

NSSatellite thing;
DateTime updated = thing.GetUpdated();

Returns

Type Description
DateTime Last updated when.

GetUpdatedBy()

Declaration

NSAssociate GetUpdatedBy()

Examples

NSSatellite thing;
NSAssociate updatedBy = thing.GetUpdatedBy();

Returns

Type Description
NSAssociate

SetArea(NSArea)

Declaration

Void SetArea(NSArea area)

Examples

NSSatellite thing;
NSArea area;
thing.SetArea(area);

Parameters

Type Name Description
NSArea area

Returns

Type Description
Void

SetContact(NSContact)

Declaration

Void SetContact(NSContact contact)

Examples

NSSatellite thing;
NSContact contact;
thing.SetContact(contact);

Parameters

Type Name Description
NSContact contact

Returns

Type Description
Void

SetCreated(DateTime)

Declaration

Void SetCreated(DateTime created)

Examples

NSSatellite thing;
DateTime created;
thing.SetCreated(created);

Parameters

Type Name Description
DateTime created Registered when.

Returns

Type Description
Void

SetCreatedBy(NSAssociate)

Declaration

Void SetCreatedBy(NSAssociate createdBy)

Examples

NSSatellite thing;
NSAssociate createdBy;
thing.SetCreatedBy(createdBy);

Parameters

Type Name Description
NSAssociate createdBy

Returns

Type Description
Void

SetLicenseOwners(NSLicenseOwner[])

Declaration

Void SetLicenseOwners(NSLicenseOwner[] licenseOwners)

Examples

NSSatellite thing;
NSLicenseOwner[] licenseOwners;
thing.SetLicenseOwners(licenseOwners);

Parameters

Type Name Description
NSLicenseOwner[] licenseOwners The restricted and unrestricted module licenses grouped by license owner.

Returns

Type Description
Void

SetSatelliteId(Integer)

Declaration

Void SetSatelliteId(Integer satelliteId)

Examples

NSSatellite thing;
Integer satelliteId;
thing.SetSatelliteId(satelliteId);

Parameters

Type Name Description
Integer satelliteId Primary key.

Returns

Type Description
Void

SetUpdated(DateTime)

Declaration

Void SetUpdated(DateTime updated)

Examples

NSSatellite thing;
DateTime updated;
thing.SetUpdated(updated);

Parameters

Type Name Description
DateTime updated Last updated when.

Returns

Type Description
Void

SetUpdatedBy(NSAssociate)

Declaration

Void SetUpdatedBy(NSAssociate updatedBy)

Examples

NSSatellite thing;
NSAssociate updatedBy;
thing.SetUpdatedBy(updatedBy);

Parameters

Type Name Description
NSAssociate updatedBy

Returns

Type Description
Void