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