pub struct WebhookDetails {
    pub jql_filter: String,
    pub events: Events,
}Expand description
WebhookDetails : A list of webhooks.
Fields§
§jql_filter: StringThe JQL filter that specifies which issues the webhook is sent for. Only a subset of JQL can be used. The supported elements are:   *  Fields: issueKey, project, issuetype, status, assignee, reporter, issue.property, and cf[id] (for custom fields—only the epic label custom field is supported).  *  Operators: =, !=, IN, and NOT IN.
events: EventsThe Jira events that trigger the webhook.
Implementations§
Source§impl WebhookDetails
 
impl WebhookDetails
Sourcepub fn new(jql_filter: String, events: Events) -> WebhookDetails
 
pub fn new(jql_filter: String, events: Events) -> WebhookDetails
A list of webhooks.
Trait Implementations§
Source§impl Clone for WebhookDetails
 
impl Clone for WebhookDetails
Source§fn clone(&self) -> WebhookDetails
 
fn clone(&self) -> WebhookDetails
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreSource§impl Debug for WebhookDetails
 
impl Debug for WebhookDetails
Source§impl<'de> Deserialize<'de> for WebhookDetails
 
impl<'de> Deserialize<'de> for WebhookDetails
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for WebhookDetails
 
impl PartialEq for WebhookDetails
Source§impl Serialize for WebhookDetails
 
impl Serialize for WebhookDetails
impl StructuralPartialEq for WebhookDetails
Auto Trait Implementations§
impl Freeze for WebhookDetails
impl RefUnwindSafe for WebhookDetails
impl Send for WebhookDetails
impl Sync for WebhookDetails
impl Unpin for WebhookDetails
impl UnwindSafe for WebhookDetails
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more