pub struct GenaiRegenerateModelApiKeyResponseApiKeyInfo {
pub created_at: Option<DateTime<Utc>>,
pub created_by: Option<String>,
pub deleted_at: Option<DateTime<Utc>>,
pub name: Option<String>,
pub secret_key: Option<String>,
pub uuid: Option<String>,
}Expand description
Model API Key Info
JSON schema
{
"description": "Model API Key Info",
"type": "object",
"properties": {
"created_at": {
"description": "Creation date",
"examples": [
"2023-01-01T00:00:00Z"
],
"type": "string",
"format": "date-time"
},
"created_by": {
"description": "Created by",
"examples": [
"12345"
],
"type": "string",
"format": "uint64"
},
"deleted_at": {
"description": "Deleted date",
"examples": [
"2023-01-01T00:00:00Z"
],
"type": "string",
"format": "date-time"
},
"name": {
"description": "Name",
"examples": [
"example name"
],
"type": "string"
},
"secret_key": {
"examples": [
"example string"
],
"type": "string"
},
"uuid": {
"description": "Uuid",
"examples": [
"123e4567-e89b-12d3-a456-426614174000"
],
"type": "string"
}
}
}Fields§
§created_at: Option<DateTime<Utc>>Creation date
created_by: Option<String>Created by
deleted_at: Option<DateTime<Utc>>Deleted date
name: Option<String>Name
secret_key: Option<String>§uuid: Option<String>Uuid
Trait Implementations§
Source§impl Clone for GenaiRegenerateModelApiKeyResponseApiKeyInfo
impl Clone for GenaiRegenerateModelApiKeyResponseApiKeyInfo
Source§fn clone(&self) -> GenaiRegenerateModelApiKeyResponseApiKeyInfo
fn clone(&self) -> GenaiRegenerateModelApiKeyResponseApiKeyInfo
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<'de> Deserialize<'de> for GenaiRegenerateModelApiKeyResponseApiKeyInfo
impl<'de> Deserialize<'de> for GenaiRegenerateModelApiKeyResponseApiKeyInfo
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 From<&GenaiRegenerateModelApiKeyResponseApiKeyInfo> for GenaiRegenerateModelApiKeyResponseApiKeyInfo
impl From<&GenaiRegenerateModelApiKeyResponseApiKeyInfo> for GenaiRegenerateModelApiKeyResponseApiKeyInfo
Source§fn from(value: &GenaiRegenerateModelApiKeyResponseApiKeyInfo) -> Self
fn from(value: &GenaiRegenerateModelApiKeyResponseApiKeyInfo) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GenaiRegenerateModelApiKeyResponseApiKeyInfo
impl RefUnwindSafe for GenaiRegenerateModelApiKeyResponseApiKeyInfo
impl Send for GenaiRegenerateModelApiKeyResponseApiKeyInfo
impl Sync for GenaiRegenerateModelApiKeyResponseApiKeyInfo
impl Unpin for GenaiRegenerateModelApiKeyResponseApiKeyInfo
impl UnsafeUnpin for GenaiRegenerateModelApiKeyResponseApiKeyInfo
impl UnwindSafe for GenaiRegenerateModelApiKeyResponseApiKeyInfo
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