Show / Hide Table of Contents

Class Assignee

Wraps an assignee.

Inheritance
System.Object
JTObject
Assignee
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Moraware.JobTrackerAPI5
Assembly: JobTrackerAPI5.dll
Syntax
public class Assignee : JTObject

Constructors

Assignee(Int32)

Creates an assignee object intended to be used to update an assignee.

Declaration
public Assignee(int assigneeId_)
Parameters
Type Name Description
System.Int32 assigneeId_

Identifies an existing assignee

Assignee(String)

Creates an assignee object intended to be used to create a new assignee.

Declaration
public Assignee(string assigneeName_)
Parameters
Type Name Description
System.String assigneeName_

Name to use for the new assignee.

Properties

AssigneeId

Assignee id.

Declaration
public int AssigneeId { get; }
Property Value
Type Description
System.Int32

AssigneeName

Assignee name.

Declaration
public string AssigneeName { get; set; }
Property Value
Type Description
System.String

Description

Description of the assignee.

Declaration
public string Description { get; set; }
Property Value
Type Description
System.String

DisplayColor

(Optional) Display color assigned to this value.

Declaration
public string DisplayColor { get; set; }
Property Value
Type Description
System.String

IsInactive

Indicates whether the assignee has been marked inactive.

Declaration
public bool IsInactive { get; set; }
Property Value
Type Description
System.Boolean

SeqNum

Sequence number.

Declaration
public int SeqNum { get; }
Property Value
Type Description
System.Int32
Back to top Generated by DocFX