Class NSSatellite
Syntax
Constructors
NSSatellite()
Initializes a new instance of the NSSatellite class.
Declaration
Methods
GetArea()
Declaration
Returns
Examples
NSSatellite thing;
NSArea area = thing.GetArea();
Declaration
Returns
NSSatellite thing;
NSContact contact = thing.GetContact();
GetCreated()
Declaration
Returns
Type |
Description |
DateTime |
Registered when.
|
Examples
NSSatellite thing;
DateTime created = thing.GetCreated();
GetCreatedBy()
Declaration
NSAssociate GetCreatedBy()
Returns
Examples
NSSatellite thing;
NSAssociate createdBy = thing.GetCreatedBy();
GetLicenseOwners()
Declaration
NSLicenseOwner[] GetLicenseOwners()
Returns
Type |
Description |
NSLicenseOwner[] |
The restricted and unrestricted module licenses grouped by license owner.
|
Examples
NSSatellite thing;
NSLicenseOwner[] licenseOwners = thing.GetLicenseOwners();
GetSatelliteId()
Declaration
Returns
Type |
Description |
Integer |
Primary key.
|
Examples
NSSatellite thing;
Integer satelliteId = thing.GetSatelliteId();
GetUpdated()
Declaration
Returns
Type |
Description |
DateTime |
Last updated when.
|
Examples
NSSatellite thing;
DateTime updated = thing.GetUpdated();
GetUpdatedBy()
Declaration
NSAssociate GetUpdatedBy()
Returns
Examples
NSSatellite thing;
NSAssociate updatedBy = thing.GetUpdatedBy();
SetArea(NSArea)
Declaration
Void SetArea(NSArea area)
Parameters
Type |
Name |
Description |
NSArea |
area |
|
Returns
Examples
NSSatellite thing;
NSArea area;
thing.SetArea(area);
Declaration
Void SetContact(NSContact contact)
Parameters
Returns
NSSatellite thing;
NSContact contact;
thing.SetContact(contact);
SetCreated(DateTime)
Declaration
Void SetCreated(DateTime created)
Parameters
Type |
Name |
Description |
DateTime |
created |
Registered when.
|
Returns
Examples
NSSatellite thing;
DateTime created;
thing.SetCreated(created);
SetCreatedBy(NSAssociate)
Declaration
Void SetCreatedBy(NSAssociate createdBy)
Parameters
Returns
Examples
NSSatellite thing;
NSAssociate createdBy;
thing.SetCreatedBy(createdBy);
SetLicenseOwners(NSLicenseOwner[])
Declaration
Void SetLicenseOwners(NSLicenseOwner[] licenseOwners)
Parameters
Type |
Name |
Description |
NSLicenseOwner[] |
licenseOwners |
The restricted and unrestricted module licenses grouped by license owner.
|
Returns
Examples
NSSatellite thing;
NSLicenseOwner[] licenseOwners;
thing.SetLicenseOwners(licenseOwners);
SetSatelliteId(Integer)
Declaration
Void SetSatelliteId(Integer satelliteId)
Parameters
Type |
Name |
Description |
Integer |
satelliteId |
Primary key.
|
Returns
Examples
NSSatellite thing;
Integer satelliteId;
thing.SetSatelliteId(satelliteId);
SetUpdated(DateTime)
Declaration
Void SetUpdated(DateTime updated)
Parameters
Type |
Name |
Description |
DateTime |
updated |
Last updated when.
|
Returns
Examples
NSSatellite thing;
DateTime updated;
thing.SetUpdated(updated);
SetUpdatedBy(NSAssociate)
Declaration
Void SetUpdatedBy(NSAssociate updatedBy)
Parameters
Returns
Examples
NSSatellite thing;
NSAssociate updatedBy;
thing.SetUpdatedBy(updatedBy);