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 ResourceAndCommitId {
    #[serde(rename = "resourceRid")]
    resource_rid: conjure_object::ResourceIdentifier,
    #[serde(rename = "commitId")]
    commit_id: super::CommitId,
}
impl ResourceAndCommitId {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new(
        resource_rid: conjure_object::ResourceIdentifier,
        commit_id: super::CommitId,
    ) -> Self {
        Self::builder().resource_rid(resource_rid).commit_id(commit_id).build()
    }
    #[inline]
    pub fn resource_rid(&self) -> &conjure_object::ResourceIdentifier {
        &self.resource_rid
    }
    #[inline]
    pub fn commit_id(&self) -> &super::CommitId {
        &self.commit_id
    }
}