#[non_exhaustive]pub struct Ticket {
pub src_url: Option<String>,
pub status: Option<String>,
pub status_details: Option<Vec<String>>,
pub status_id: Option<i64>,
pub title: Option<String>,
pub type: Option<String>,
pub type_id: Option<i64>,
pub uid: Option<String>,
}Expand description
Ticket
The Ticket object represents ticket in the customer’s IT Service Management (ITSM) systems like ServiceNow, Jira, etc.
[] Category: | Name: ticket
Constraints:
- at_least_one:
[src_url,uid]
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.src_url: Option<String>Source URL
The url of a ticket in the ticket system.
recommended
status: Option<String>Ticket Status
The status of the ticket normalized to the caption of the status_id value. In the case of 99, this value should as defined by the source.
optional
status_details: Option<Vec<String>>Status Details
A list of contextual descriptions of the status, status_id values.
optional
status_id: Option<i64>Ticket Status ID
The normalized identifier for the ticket status.
optional
title: Option<String>Title
The title of the ticket.
optional
type: Option<String>Ticket Type
The linked ticket type determines whether the ticket is internal or in an external ticketing system.
optional
type_id: Option<i64>Ticket Type ID
The normalized identifier for the ticket type.
optional
uid: Option<String>Unique ID
Unique identifier of the ticket.
recommended