pub struct UsageAudioSpeechesResult {
pub object: String,
pub characters: 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 audio speeches usage details of the specific time bucket.
Fields§
§object: String§characters: i64The number of characters processed.
num_model_requests: i64The 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.
Trait Implementations§
Source§impl Clone for UsageAudioSpeechesResult
impl Clone for UsageAudioSpeechesResult
Source§fn clone(&self) -> UsageAudioSpeechesResult
fn clone(&self) -> UsageAudioSpeechesResult
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 UsageAudioSpeechesResult
impl Debug for UsageAudioSpeechesResult
Source§impl Default for UsageAudioSpeechesResult
impl Default for UsageAudioSpeechesResult
Source§fn default() -> UsageAudioSpeechesResult
fn default() -> UsageAudioSpeechesResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UsageAudioSpeechesResult
impl RefUnwindSafe for UsageAudioSpeechesResult
impl Send for UsageAudioSpeechesResult
impl Sync for UsageAudioSpeechesResult
impl Unpin for UsageAudioSpeechesResult
impl UnwindSafe for UsageAudioSpeechesResult
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