/*
* The Jira Cloud platform REST API
*
* Jira Cloud platform REST API documentation
*
* The version of the OpenAPI document: 1001.0.0-SNAPSHOT
* Contact: ecosystem@atlassian.com
* Generated by: https://openapi-generator.tech
*/
/// CustomFieldOption : Details of a custom option for a field.
#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct CustomFieldOption {
/// The URL of these custom field option details.
#[serde(rename = "self", skip_serializing_if = "Option::is_none")]
pub _self: Option<String>,
/// The value of the custom field option.
#[serde(rename = "value", skip_serializing_if = "Option::is_none")]
pub value: Option<String>,
}
impl CustomFieldOption {
/// Details of a custom option for a field.
pub fn new() -> CustomFieldOption {
CustomFieldOption {
_self: None,
value: None,
}
}
}