pub struct BulkIssuePropertyUpdateRequest {
pub value: Option<Value>,
pub expression: Option<String>,
pub filter: Option<IssueFilterForBulkPropertySet>,
}
Expand description
BulkIssuePropertyUpdateRequest : Bulk issue property update request details.
Fields§
§value: Option<Value>
The value of the property. The value must be a valid, non-empty JSON blob. The maximum length is 32768 characters.
expression: Option<String>
EXPERIMENTAL. The Jira expression to calculate the value of the property. The value of the expression must be an object that can be converted to JSON, such as a number, boolean, string, list, or map. The context variables available to the expression are issue
and user
. Issues for which the expression returns a value whose JSON representation is longer than 32768 characters are ignored.
filter: Option<IssueFilterForBulkPropertySet>
The bulk operation filter.
Implementations§
Source§impl BulkIssuePropertyUpdateRequest
impl BulkIssuePropertyUpdateRequest
Sourcepub fn new() -> BulkIssuePropertyUpdateRequest
pub fn new() -> BulkIssuePropertyUpdateRequest
Bulk issue property update request details.
Trait Implementations§
Source§impl Clone for BulkIssuePropertyUpdateRequest
impl Clone for BulkIssuePropertyUpdateRequest
Source§fn clone(&self) -> BulkIssuePropertyUpdateRequest
fn clone(&self) -> BulkIssuePropertyUpdateRequest
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<'de> Deserialize<'de> for BulkIssuePropertyUpdateRequest
impl<'de> Deserialize<'de> for BulkIssuePropertyUpdateRequest
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 BulkIssuePropertyUpdateRequest
impl PartialEq for BulkIssuePropertyUpdateRequest
Source§fn eq(&self, other: &BulkIssuePropertyUpdateRequest) -> bool
fn eq(&self, other: &BulkIssuePropertyUpdateRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for BulkIssuePropertyUpdateRequest
Auto Trait Implementations§
impl Freeze for BulkIssuePropertyUpdateRequest
impl RefUnwindSafe for BulkIssuePropertyUpdateRequest
impl Send for BulkIssuePropertyUpdateRequest
impl Sync for BulkIssuePropertyUpdateRequest
impl Unpin for BulkIssuePropertyUpdateRequest
impl UnwindSafe for BulkIssuePropertyUpdateRequest
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