#[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 ErrorResult {
#[builder(into)]
#[serde(rename = "errorType")]
error_type: String,
#[builder(into)]
#[serde(rename = "message")]
message: String,
#[builder(default, into)]
#[serde(
rename = "errorInstanceId",
skip_serializing_if = "Option::is_none",
default
)]
error_instance_id: Option<String>,
}
impl ErrorResult {
#[inline]
pub fn new(error_type: impl Into<String>, message: impl Into<String>) -> Self {
Self::builder().error_type(error_type).message(message).build()
}
#[inline]
pub fn error_type(&self) -> &str {
&*self.error_type
}
#[inline]
pub fn message(&self) -> &str {
&*self.message
}
#[inline]
pub fn error_instance_id(&self) -> Option<&str> {
self.error_instance_id.as_ref().map(|o| &**o)
}
}