Show / Hide Table of Contents

Class NSTicketCategoryMembershipEntity

Syntax

Constructors

NSTicketCategoryMembershipEntity()

Initializes a new instance of the NSTicketCategoryMembershipEntity class.

Declaration
NSTicketCategoryMembershipEntity
Examples
NSTicketCategoryMembershipEntity thing;
NSAssociate associate;
associate.SetId(2);
thing.SetUser(associate);
thing.SetWeight(2);

Methods

GetUser()

Declaration
NSAssociate GetUser()
Returns
Type Description
NSAssociate

Gets referenced Associate.

Examples
NSTicketCategoryMembershipEntity thing;
NSAssociate associate = thing.GetUser();

GetWeight()

Declaration
Integer GetWeight()
Returns
Type Description
Integer

Gets value used for weighted delegation.

Examples
NSTicketCategoryMembershipEntity thing;
Integer weight = thing.GetWeight();

SetUser(NSAssociate)

Declaration
Void SetUser(NSAssociate associate)
Parameters
Type Name Description
NSAssociate associate

Sets referenced Associate.

Returns
Type Description
Void
Examples
NSTicketCategoryMembershipEntity thing;
NSAssociate associate;
thing.SetUser(associate);

SetWeight(Integer)

Declaration
Void SetWeight(Integer weight)
Parameters
Type Name Description
Integer weight

Value used for weighted delegation.

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