nominal-api-conjure 0.1435.0

Conjure HTTP 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 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>,
    #[serde(rename = "expiresInSeconds")]
    expires_in_seconds: conjure_object::SafeLong,
}
impl SignPartResponse {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new(
        url: impl Into<String>,
        expires_in_seconds: conjure_object::SafeLong,
    ) -> Self {
        Self::builder().url(url).expires_in_seconds(expires_in_seconds).build()
    }
    #[inline]
    pub fn url(&self) -> &str {
        &*self.url
    }
    #[inline]
    pub fn headers(&self) -> &std::collections::BTreeMap<String, String> {
        &self.headers
    }
    /// How long the signed URL stays valid, from when it was issued. Relative rather than
    /// absolute so a client with a skewed clock still bounds the request correctly; clients
    /// should time the upload out at this point instead of letting a request run past the
    /// signature's lifetime and fail as an opaque connection reset.
    #[inline]
    pub fn expires_in_seconds(&self) -> conjure_object::SafeLong {
        self.expires_in_seconds
    }
}