pub struct GenaiCreateAgentResponseAgentChatbot {
pub enabled: Option<bool>,
pub id: Option<String>,
pub name: Option<String>,
pub settings: Map<String, Value>,
}Expand description
GenaiCreateAgentResponseAgentChatbot
JSON schema
{
"type": "object",
"properties": {
"enabled": {
"examples": [
true
],
"type": "boolean"
},
"id": {
"examples": [
"chatbot-123"
],
"type": "string"
},
"name": {
"examples": [
"Customer Support Bot"
],
"type": "string"
},
"settings": {
"type": "object",
"additionalProperties": true
}
}
}Fields§
§enabled: Option<bool>§id: Option<String>§name: Option<String>§settings: Map<String, Value>Trait Implementations§
Source§impl Clone for GenaiCreateAgentResponseAgentChatbot
impl Clone for GenaiCreateAgentResponseAgentChatbot
Source§fn clone(&self) -> GenaiCreateAgentResponseAgentChatbot
fn clone(&self) -> GenaiCreateAgentResponseAgentChatbot
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 GenaiCreateAgentResponseAgentChatbot
impl<'de> Deserialize<'de> for GenaiCreateAgentResponseAgentChatbot
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<&GenaiCreateAgentResponseAgentChatbot> for GenaiCreateAgentResponseAgentChatbot
impl From<&GenaiCreateAgentResponseAgentChatbot> for GenaiCreateAgentResponseAgentChatbot
Source§fn from(value: &GenaiCreateAgentResponseAgentChatbot) -> Self
fn from(value: &GenaiCreateAgentResponseAgentChatbot) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GenaiCreateAgentResponseAgentChatbot
impl RefUnwindSafe for GenaiCreateAgentResponseAgentChatbot
impl Send for GenaiCreateAgentResponseAgentChatbot
impl Sync for GenaiCreateAgentResponseAgentChatbot
impl Unpin for GenaiCreateAgentResponseAgentChatbot
impl UnsafeUnpin for GenaiCreateAgentResponseAgentChatbot
impl UnwindSafe for GenaiCreateAgentResponseAgentChatbot
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