pub struct GenaiListModelApiKeysResponseApiKeyInfosItem {
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 GenaiListModelApiKeysResponseApiKeyInfosItem
impl Clone for GenaiListModelApiKeysResponseApiKeyInfosItem
Source§fn clone(&self) -> GenaiListModelApiKeysResponseApiKeyInfosItem
fn clone(&self) -> GenaiListModelApiKeysResponseApiKeyInfosItem
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 GenaiListModelApiKeysResponseApiKeyInfosItem
impl<'de> Deserialize<'de> for GenaiListModelApiKeysResponseApiKeyInfosItem
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<&GenaiListModelApiKeysResponseApiKeyInfosItem> for GenaiListModelApiKeysResponseApiKeyInfosItem
impl From<&GenaiListModelApiKeysResponseApiKeyInfosItem> for GenaiListModelApiKeysResponseApiKeyInfosItem
Source§fn from(value: &GenaiListModelApiKeysResponseApiKeyInfosItem) -> Self
fn from(value: &GenaiListModelApiKeysResponseApiKeyInfosItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GenaiListModelApiKeysResponseApiKeyInfosItem
impl RefUnwindSafe for GenaiListModelApiKeysResponseApiKeyInfosItem
impl Send for GenaiListModelApiKeysResponseApiKeyInfosItem
impl Sync for GenaiListModelApiKeysResponseApiKeyInfosItem
impl Unpin for GenaiListModelApiKeysResponseApiKeyInfosItem
impl UnsafeUnpin for GenaiListModelApiKeysResponseApiKeyInfosItem
impl UnwindSafe for GenaiListModelApiKeysResponseApiKeyInfosItem
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