Class NSTicketSummaryItem

The ticket summary with heading, created date.

Constructors

NSTicketSummaryItem()

Initializes a new instance of the NSTicketSummaryItem class.

Declaration

NSTicketSummaryItem

Methods

GetRegistered()

Declaration

DateTime GetRegistered()

Examples

NSTicketSummaryItem thing;
DateTime registered = thing.GetRegistered();

Returns

Type Description
DateTime When the ticket was created.

GetTicketId()

Declaration

Integer GetTicketId()

Examples

NSTicketSummaryItem thing;
Integer ticketId = thing.GetTicketId();

Returns

Type Description
Integer The primary key (auto-incremented).

GetTicketStatus()

Declaration

Integer GetTicketStatus()

Examples

NSTicketSummaryItem thing;
Integer ticketStatus = thing.GetTicketStatus();

Returns

Type Description
Integer User-defined ticket status.

GetTitle()

Declaration

String GetTitle()

Examples

NSTicketSummaryItem thing;
String title = thing.GetTitle();

Returns

Type Description
String The title of the ticket.

SetRegistered(DateTime)

Declaration

Void SetRegistered(DateTime registered)

Examples

NSTicketSummaryItem thing;
DateTime registered;
thing.SetRegistered(registered);

Parameters

Type Name Description
DateTime registered When the ticket was created.

Returns

Type Description
Void

SetTicketId(Integer)

Declaration

Void SetTicketId(Integer ticketId)

Examples

NSTicketSummaryItem thing;
Integer ticketId;
thing.SetTicketId(ticketId);

Parameters

Type Name Description
Integer ticketId The primary key (auto-incremented).

Returns

Type Description
Void

SetTicketStatus(Integer)

Declaration

Void SetTicketStatus(Integer ticketStatus)

Examples

NSTicketSummaryItem thing;
Integer ticketStatus;
thing.SetTicketStatus(ticketStatus);

Parameters

Type Name Description
Integer ticketStatus User defined ticket status.

Returns

Type Description
Void

SetTitle(String)

Declaration

Void SetTitle(String title)

Examples

NSTicketSummaryItem thing;
String title;
thing.SetTitle(title);

Parameters

Type Name Description
String title The title of the ticket.

Returns

Type Description
Void