Class TicketingExposers
Defines ticketing exposers.
public class TicketingExposers
- Inheritance
-
TicketingExposers
- Extension Methods
Examples
Retrieving tickets by ticket field resolver:
public Ticket[] RetrieveTicketByResolverID(TicketFieldResolver resolver)
{
var outputTickets = helper.GetTickets(filter: TicketingExposers.ResolverID.Equal(resolver.ID));
return outputTickets.ToArray();
}
Fields
- CreationDate
Exposes the CreationDate property of a Ticket instance.
- CustomTicketFields
Exposes the CustomTicketFields property of a Ticket instance.
- DataMinerID
Exposes the DataMinerID property of the ID of a Ticket instance.
- ResolverID
Exposes the CustomFieldResolverID property of a Ticket instance.
- TableName
The table name.
- TicketLinks
Exposes the file friendly ticket links of a Ticket instance.
Methods
- CreateFullTableDefinition()
Creates the full table definition.
- Initialize()
Guarantee that all static fields are initialized. Since C# makes use of the laziest initialization.