Show / Hide Table of Contents

Class NSSatellite

Syntax

Constructors

NSSatellite()

Initializes a new instance of the NSSatellite class.

Declaration
NSSatellite

Methods

GetArea()

Declaration
NSArea GetArea()
Returns
Type Description
NSArea
Examples
NSSatellite thing;
NSArea area = thing.GetArea();

GetContact()

Declaration
NSContact GetContact()
Returns
Type Description
NSContact
Examples
NSSatellite thing;
NSContact contact = thing.GetContact();

GetCreated()

Declaration
DateTime GetCreated()
Returns
Type Description
DateTime

Registered when.

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

GetCreatedBy()

Declaration
NSAssociate GetCreatedBy()
Returns
Type Description
NSAssociate
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.

Remarks

These module licenses are either assigned or unassigned to this user

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

GetSatelliteId()

Declaration
Integer GetSatelliteId()
Returns
Type Description
Integer

Primary key.

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

GetUpdated()

Declaration
DateTime GetUpdated()
Returns
Type Description
DateTime

Last updated when.

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

GetUpdatedBy()

Declaration
NSAssociate GetUpdatedBy()
Returns
Type Description
NSAssociate
Examples
NSSatellite thing;
NSAssociate updatedBy = thing.GetUpdatedBy();

SetArea(NSArea)

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)

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)

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)

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

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)

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)

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)

Declaration
Void SetUpdatedBy(NSAssociate updatedBy)
Parameters
Type Name Description
NSAssociate updatedBy
Returns
Type Description
Void
Examples
NSSatellite thing;
NSAssociate updatedBy;
thing.SetUpdatedBy(updatedBy);
In This Article
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top