pub struct CopilotSeatBreakdown {
pub total: Option<i32>,
pub added_this_cycle: Option<i32>,
pub pending_cancellation: Option<i32>,
pub pending_invitation: Option<i32>,
pub active_this_cycle: Option<i32>,
pub inactive_this_cycle: Option<i32>,
}
Expand description
CopilotSeatBreakdown : The breakdown of Copilot Business seats for the organization.
Fields§
§total: Option<i32>
The total number of seats being billed for the organization as of the current billing cycle.
added_this_cycle: Option<i32>
Seats added during the current billing cycle.
pending_cancellation: Option<i32>
The number of seats that are pending cancellation at the end of the current billing cycle.
pending_invitation: Option<i32>
The number of seats that have been assigned to users that have not yet accepted an invitation to this organization.
active_this_cycle: Option<i32>
The number of seats that have used Copilot during the current billing cycle.
inactive_this_cycle: Option<i32>
The number of seats that have not used Copilot during the current billing cycle.
Implementations§
Source§impl CopilotSeatBreakdown
impl CopilotSeatBreakdown
Sourcepub fn new() -> CopilotSeatBreakdown
pub fn new() -> CopilotSeatBreakdown
The breakdown of Copilot Business seats for the organization.
Trait Implementations§
Source§impl Clone for CopilotSeatBreakdown
impl Clone for CopilotSeatBreakdown
Source§fn clone(&self) -> CopilotSeatBreakdown
fn clone(&self) -> CopilotSeatBreakdown
Returns a duplicate 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 moreSource§impl Debug for CopilotSeatBreakdown
impl Debug for CopilotSeatBreakdown
Source§impl Default for CopilotSeatBreakdown
impl Default for CopilotSeatBreakdown
Source§fn default() -> CopilotSeatBreakdown
fn default() -> CopilotSeatBreakdown
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CopilotSeatBreakdown
impl<'de> Deserialize<'de> for CopilotSeatBreakdown
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
Source§impl PartialEq for CopilotSeatBreakdown
impl PartialEq for CopilotSeatBreakdown
Source§impl Serialize for CopilotSeatBreakdown
impl Serialize for CopilotSeatBreakdown
impl StructuralPartialEq for CopilotSeatBreakdown
Auto Trait Implementations§
impl Freeze for CopilotSeatBreakdown
impl RefUnwindSafe for CopilotSeatBreakdown
impl Send for CopilotSeatBreakdown
impl Sync for CopilotSeatBreakdown
impl Unpin for CopilotSeatBreakdown
impl UnwindSafe for CopilotSeatBreakdown
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