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