pub struct WebhookDetails {
pub jql_filter: String,
pub events: Vec<Events>,
}
Expand description
WebhookDetails : A list of webhooks.
Fields§
§jql_filter: String
The 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: Vec<Events>
The Jira events that trigger the webhook.
Implementations§
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 Default for WebhookDetails
impl Default for WebhookDetails
Source§fn default() -> WebhookDetails
fn default() -> WebhookDetails
Returns the “default value” for a type. Read more
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