pub struct Organization {
pub organization_id: String,
pub inbox_count: Option<i64>,
pub domain_count: Option<i64>,
pub inbox_limit: Option<i64>,
pub domain_limit: Option<i64>,
pub billing_type: Option<String>,
pub authentication_type: Option<String>,
pub updated_at: Option<String>,
pub created_at: Option<String>,
}Expand description
The organization the current API key belongs to, from
Client::get_organization.
Fields§
§organization_id: StringUnique organization id.
inbox_count: Option<i64>Current number of inboxes.
domain_count: Option<i64>Current number of domains.
inbox_limit: Option<i64>Maximum inboxes allowed on the plan.
domain_limit: Option<i64>Maximum domains allowed on the plan.
billing_type: Option<String>Billing plan type, when set.
authentication_type: Option<String>Authentication provider type, when set.
updated_at: Option<String>When the organization was last updated (RFC 3339).
created_at: Option<String>When the organization was created (RFC 3339).
Trait Implementations§
Source§impl Clone for Organization
impl Clone for Organization
Source§fn clone(&self) -> Organization
fn clone(&self) -> Organization
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Organization
impl Debug for Organization
Source§impl<'de> Deserialize<'de> for Organization
impl<'de> Deserialize<'de> for Organization
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Organization
impl RefUnwindSafe for Organization
impl Send for Organization
impl Sync for Organization
impl Unpin for Organization
impl UnsafeUnpin for Organization
impl UnwindSafe for Organization
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