nominal-api 0.1239.0

API bindings for the Nominal platform
Documentation
#[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 WriteLogsRequest {
    #[builder(default, list(item(type = super::LogPoint)))]
    #[serde(rename = "logs", skip_serializing_if = "Vec::is_empty", default)]
    logs: Vec<super::LogPoint>,
    #[builder(default, into)]
    #[serde(rename = "channel", skip_serializing_if = "Option::is_none", default)]
    channel: Option<super::super::super::super::api::Channel>,
}
impl WriteLogsRequest {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new() -> Self {
        Self::builder().build()
    }
    #[inline]
    pub fn logs(&self) -> &[super::LogPoint] {
        &*self.logs
    }
    /// If provided, the channel to which to write logs.
    /// If not provided, defaults to "logs"
    #[inline]
    pub fn channel(&self) -> Option<&super::super::super::super::api::Channel> {
        self.channel.as_ref().map(|o| &*o)
    }
}