pub struct MultipleCustomFieldValuesUpdate {
pub custom_field: String,
pub issue_ids: Vec<i64>,
pub value: Option<Value>,
}
Expand description
MultipleCustomFieldValuesUpdate : A custom field and its new value with a list of issue to update.
Fields§
§custom_field: String
The ID or key of the custom field. For example, customfield_10010
.
issue_ids: Vec<i64>
The list of issue IDs.
value: Option<Value>
The value for the custom field. The value must be compatible with the custom field type as follows: * string
the value must be a string. * number
the value must be a number. * datetime
the value must be a string that represents a date in the ISO format or the simplified extended ISO format. For example, \"2023-01-18T12:00:00-03:00\"
or \"2023-01-18T12:00:00.000Z\"
. However, the milliseconds part is ignored. * user
the value must be an object that contains the accountId
field. * group
the value must be an object that contains the group name
or groupId
field. Because group names can change, we recommend using groupId
. A list of appropriate values must be provided if the field is of the list
collection type.
Implementations§
Trait Implementations§
Source§impl Clone for MultipleCustomFieldValuesUpdate
impl Clone for MultipleCustomFieldValuesUpdate
Source§fn clone(&self) -> MultipleCustomFieldValuesUpdate
fn clone(&self) -> MultipleCustomFieldValuesUpdate
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for MultipleCustomFieldValuesUpdate
impl Default for MultipleCustomFieldValuesUpdate
Source§fn default() -> MultipleCustomFieldValuesUpdate
fn default() -> MultipleCustomFieldValuesUpdate
Source§impl<'de> Deserialize<'de> for MultipleCustomFieldValuesUpdate
impl<'de> Deserialize<'de> for MultipleCustomFieldValuesUpdate
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>,
Source§impl PartialEq for MultipleCustomFieldValuesUpdate
impl PartialEq for MultipleCustomFieldValuesUpdate
Source§fn eq(&self, other: &MultipleCustomFieldValuesUpdate) -> bool
fn eq(&self, other: &MultipleCustomFieldValuesUpdate) -> bool
self
and other
values to be equal, and is used by ==
.