pub struct GetUsage200Response {
pub character_count: Option<i64>,
pub character_limit: Option<i64>,
pub document_limit: Option<i64>,
pub document_count: Option<i64>,
pub team_document_limit: Option<i64>,
pub team_document_count: Option<i64>,
}Fields§
§character_count: Option<i64>Characters translated so far in the current billing period.
character_limit: Option<i64>Current maximum number of characters that can be translated per billing period.
document_limit: Option<i64>Documents translated so far in the current billing period.
document_count: Option<i64>Current maximum number of documents that can be translated per billing period.
team_document_limit: Option<i64>Documents translated by all users in the team so far in the current billing period.
team_document_count: Option<i64>Current maximum number of documents that can be translated by the team per billing period.
Implementations§
source§impl GetUsage200Response
impl GetUsage200Response
pub fn new() -> GetUsage200Response
Trait Implementations§
source§impl Clone for GetUsage200Response
impl Clone for GetUsage200Response
source§fn clone(&self) -> GetUsage200Response
fn clone(&self) -> GetUsage200Response
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 moresource§impl Debug for GetUsage200Response
impl Debug for GetUsage200Response
source§impl Default for GetUsage200Response
impl Default for GetUsage200Response
source§fn default() -> GetUsage200Response
fn default() -> GetUsage200Response
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for GetUsage200Response
impl<'de> Deserialize<'de> for GetUsage200Response
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<GetUsage200Response> for GetUsage200Response
impl PartialEq<GetUsage200Response> for GetUsage200Response
source§fn eq(&self, other: &GetUsage200Response) -> bool
fn eq(&self, other: &GetUsage200Response) -> bool
This method tests for
self and other values to be equal, and is used
by ==.