#[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 SignPartResponse {
#[builder(into)]
#[serde(rename = "url")]
url: String,
#[builder(default, map(key(type = String, into), value(type = String, into)))]
#[serde(
rename = "headers",
skip_serializing_if = "std::collections::BTreeMap::is_empty",
default
)]
headers: std::collections::BTreeMap<String, String>,
}
impl SignPartResponse {
#[inline]
pub fn new(url: impl Into<String>) -> Self {
Self::builder().url(url).build()
}
#[inline]
pub fn url(&self) -> &str {
&*self.url
}
#[inline]
pub fn headers(&self) -> &std::collections::BTreeMap<String, String> {
&self.headers
}
}