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 CommitRequest {
    #[serde(rename = "newCommit")]
    new_commit: super::CommitId,
    #[builder(default, into)]
    #[serde(
        rename = "mergeParentCommit",
        skip_serializing_if = "Option::is_none",
        default
    )]
    merge_parent_commit: Option<super::CommitId>,
    #[builder(into)]
    #[serde(rename = "message")]
    message: String,
    #[builder(default, into)]
    #[serde(rename = "latestCommit", skip_serializing_if = "Option::is_none", default)]
    latest_commit: Option<super::CommitId>,
}
impl CommitRequest {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new(new_commit: super::CommitId, message: impl Into<String>) -> Self {
        Self::builder().new_commit(new_commit).message(message).build()
    }
    #[inline]
    pub fn new_commit(&self) -> &super::CommitId {
        &self.new_commit
    }
    /// If present, this existing commit will be the merge parent
    /// of the new commit. It will be made permanent if not already,
    /// to prevent the merge parent from being compacted.
    #[inline]
    pub fn merge_parent_commit(&self) -> Option<&super::CommitId> {
        self.merge_parent_commit.as_ref().map(|o| &*o)
    }
    #[inline]
    pub fn message(&self) -> &str {
        &*self.message
    }
    #[inline]
    pub fn latest_commit(&self) -> Option<&super::CommitId> {
        self.latest_commit.as_ref().map(|o| &*o)
    }
}