#[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 CommitIdExists {
#[serde(rename = "resourceRid")]
resource_rid: conjure_object::ResourceIdentifier,
#[serde(rename = "commitId")]
commit_id: super::super::super::super::super::objects::scout::versioning::api::CommitId,
}
impl CommitIdExists {
#[inline]
pub fn new(
resource_rid: conjure_object::ResourceIdentifier,
commit_id: super::super::super::super::super::objects::scout::versioning::api::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::super::super::super::super::objects::scout::versioning::api::CommitId {
&self.commit_id
}
}
impl conjure_error::ErrorType for CommitIdExists {
#[inline]
fn code() -> conjure_error::ErrorCode {
conjure_error::ErrorCode::Conflict
}
#[inline]
fn name() -> &'static str {
"Scout:CommitIdExists"
}
#[inline]
fn safe_args() -> &'static [&'static str] {
&["commitId", "resourceRid"]
}
}