Show / Hide Table of Contents

Class NSResolvedPerson

The Person Service. The service implements all services working with the Person object.

Syntax

Constructors

NSResolvedPerson()

Initializes a new instance of the NSResolvedPerson class.

Declaration
NSResolvedPerson

Methods

GetPerson()

The Person Service. The service implements all services working with the Person object.

Declaration
NSPersonEntity GetPerson()
Returns
Type Description
NSPersonEntity

The resolved NSPersonEntity instance.

Examples
NSResolvedPerson thing;
NSPersonEntity person = thing.GetPerson();

GetPersonCreated()

The Person Service. The service implements all services working with the Person object.

Declaration
Bool GetPersonCreated()
Returns
Type Description
Bool

Indicates if the resolved person was created or not.

Examples
NSResolvedPerson thing;
Bool personCreated = thing.GetPersonCreated();

SetPerson(NSPersonEntity)

The Person Service. The service implements all services working with the Person object.

Declaration
Void SetPerson(NSPersonEntity person)
Parameters
Type Name Description
NSPersonEntity person

The resolved NSPersonEntity instance.

Returns
Type Description
Void
Examples
NSResolvedPerson thing;
NSPersonEntity person;
thing.SetPerson(person);

SetPersonCreated(Bool)

The Person Service. The service implements all services working with the Person object.

Declaration
Void SetPersonCreated(Bool personCreated)
Parameters
Type Name Description
Bool personCreated

Indicates if the resolved person was created or not.

Returns
Type Description
Void
Examples
NSResolvedPerson thing;
Bool personCreated;
thing.SetPersonCreated(personCreated);
In This Article
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top