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 |