#[derive(
Debug,
Clone,
conjure_object::serde::Serialize,
conjure_object::serde::Deserialize,
PartialEq,
Eq,
PartialOrd,
Ord,
Hash
)]
#[serde(crate = "conjure_object::serde")]
#[conjure_object::private::staged_builder::staged_builder]
#[builder(crate = conjure_object::private::staged_builder, update, inline)]
pub struct UpdateIntegrationRequest {
#[builder(default, into)]
#[serde(rename = "name", skip_serializing_if = "Option::is_none", default)]
name: Option<String>,
#[builder(default, into)]
#[serde(rename = "description", skip_serializing_if = "Option::is_none", default)]
description: Option<String>,
}
impl UpdateIntegrationRequest {
#[inline]
pub fn new() -> Self {
Self::builder().build()
}
#[inline]
pub fn name(&self) -> Option<&str> {
self.name.as_ref().map(|o| &**o)
}
#[inline]
pub fn description(&self) -> Option<&str> {
self.description.as_ref().map(|o| &**o)
}
}