pub struct Certificate {
pub object: String,
pub id: String,
pub name: String,
pub created_at: i64,
pub certificate_details: Certificate_CertificateDetails,
pub active: bool,
}Expand description
Represents an individual certificate uploaded to the organization.
Fields§
§object: StringThe object type.
id: StringThe identifier, which can be referenced in API endpoints
name: StringThe name of the certificate.
created_at: i64The Unix timestamp (in seconds) of when the certificate was uploaded.
certificate_details: Certificate_CertificateDetails§active: boolWhether the certificate is currently active at the specified scope.
Trait Implementations§
Source§impl Clone for Certificate
impl Clone for Certificate
Source§fn clone(&self) -> Certificate
fn clone(&self) -> Certificate
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for Certificate
impl RefUnwindSafe for Certificate
impl Send for Certificate
impl Sync for Certificate
impl Unpin for Certificate
impl UnwindSafe for Certificate
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more