pub struct UsageModerationsResult {
pub input_tokens: i64,
pub num_model_requests: i64,
pub project_id: Option<String>,
pub user_id: Option<String>,
pub api_key_id: Option<String>,
pub model: Option<String>,
}
Expand description
The aggregated moderations usage details of the specific time bucket.
Fields§
§input_tokens: i64
The aggregated number of input tokens used.
num_model_requests: i64
The count of requests made to the model.
project_id: Option<String>
When group_by=project_id
, this field provides the project ID of the grouped usage result.
user_id: Option<String>
When group_by=user_id
, this field provides the user ID of the grouped usage result.
api_key_id: Option<String>
When group_by=api_key_id
, this field provides the API key ID of the grouped usage result.
model: Option<String>
When group_by=model
, this field provides the model name of the grouped usage result.
Implementations§
Source§impl UsageModerationsResult
impl UsageModerationsResult
Sourcepub fn builder() -> UsageModerationsResultBuilder<((), (), (), (), (), ())>
pub fn builder() -> UsageModerationsResultBuilder<((), (), (), (), (), ())>
Create a builder for building UsageModerationsResult
.
On the builder, call .input_tokens(...)
, .num_model_requests(...)
, .project_id(...)
(optional), .user_id(...)
(optional), .api_key_id(...)
(optional), .model(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of UsageModerationsResult
.
Trait Implementations§
Source§impl Clone for UsageModerationsResult
impl Clone for UsageModerationsResult
Source§fn clone(&self) -> UsageModerationsResult
fn clone(&self) -> UsageModerationsResult
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for UsageModerationsResult
impl Debug for UsageModerationsResult
Source§impl<'de> Deserialize<'de> for UsageModerationsResult
impl<'de> Deserialize<'de> for UsageModerationsResult
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>,
Source§impl PartialEq for UsageModerationsResult
impl PartialEq for UsageModerationsResult
Source§fn eq(&self, other: &UsageModerationsResult) -> bool
fn eq(&self, other: &UsageModerationsResult) -> bool
self
and other
values to be equal, and is used by ==
.