Class NSTicketSummaryItem
The ticket summary with heading, created date.
Syntax
Constructors
NSTicketSummaryItem()
Initializes a new instance of the NSTicketSummaryItem class.
Declaration
NSTicketSummaryItem
Methods
GetRegistered()
The ticket summary with heading, created date.
Declaration
DateTime GetRegistered()
Returns
Type | Description |
---|---|
DateTime | When the ticket was created. |
Examples
NSTicketSummaryItem thing;
DateTime registered = thing.GetRegistered();
GetTicketId()
The ticket summary with heading, created date.
Declaration
Integer GetTicketId()
Returns
Type | Description |
---|---|
Integer | The primary key (auto-incremented). |
Examples
NSTicketSummaryItem thing;
Integer ticketId = thing.GetTicketId();
GetTicketStatus()
The ticket summary with heading, created date.
Declaration
Integer GetTicketStatus()
Returns
Type | Description |
---|---|
Integer | User-defined ticket status. |
Examples
NSTicketSummaryItem thing;
Integer ticketStatus = thing.GetTicketStatus();
GetTitle()
The ticket summary with heading, created date.
Declaration
String GetTitle()
Returns
Type | Description |
---|---|
String | The title of the ticket. |
Examples
NSTicketSummaryItem thing;
String title = thing.GetTitle();
SetRegistered(DateTime)
The ticket summary with heading, created date.
Declaration
Void SetRegistered(DateTime registered)
Parameters
Type | Name | Description |
---|---|---|
DateTime | registered | When the ticket was created. |
Returns
Type | Description |
---|---|
Void |
Examples
NSTicketSummaryItem thing;
DateTime registered;
thing.SetRegistered(registered);
SetTicketId(Integer)
The ticket summary with heading, created date.
Declaration
Void SetTicketId(Integer ticketId)
Parameters
Type | Name | Description |
---|---|---|
Integer | ticketId | The primary key (auto-incremented). |
Returns
Type | Description |
---|---|
Void |
Examples
NSTicketSummaryItem thing;
Integer ticketId;
thing.SetTicketId(ticketId);
SetTicketStatus(Integer)
The ticket summary with heading, created date.
Declaration
Void SetTicketStatus(Integer ticketStatus)
Parameters
Type | Name | Description |
---|---|---|
Integer | ticketStatus | User defined ticket status. |
Returns
Type | Description |
---|---|
Void |
Examples
NSTicketSummaryItem thing;
Integer ticketStatus;
thing.SetTicketStatus(ticketStatus);
SetTitle(String)
The ticket summary with heading, created date.
Declaration
Void SetTitle(String title)
Parameters
Type | Name | Description |
---|---|---|
String | title | The title of the ticket. |
Returns
Type | Description |
---|---|
Void |
Examples
NSTicketSummaryItem thing;
String title;
thing.SetTitle(title);