pub struct AgentSessionCreateOnComment {
pub comment_id: Option<String>,
pub external_link: Option<String>,
pub external_urls: Option<Vec<Box<AgentSessionExternalUrlInput>>>,
}Fields§
§comment_id: Option<String>The root comment that this session will be associated with.
external_link: Option<String>The URL of an external agent-hosted page associated with this session.
external_urls: Option<Vec<Box<AgentSessionExternalUrlInput>>>URLs of external resources associated with this session.
Trait Implementations§
Source§impl Clone for AgentSessionCreateOnComment
impl Clone for AgentSessionCreateOnComment
Source§fn clone(&self) -> AgentSessionCreateOnComment
fn clone(&self) -> AgentSessionCreateOnComment
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 AgentSessionCreateOnComment
impl Debug for AgentSessionCreateOnComment
Source§impl Default for AgentSessionCreateOnComment
impl Default for AgentSessionCreateOnComment
Source§fn default() -> AgentSessionCreateOnComment
fn default() -> AgentSessionCreateOnComment
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AgentSessionCreateOnComment
impl<'de> Deserialize<'de> for AgentSessionCreateOnComment
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
Auto Trait Implementations§
impl Freeze for AgentSessionCreateOnComment
impl RefUnwindSafe for AgentSessionCreateOnComment
impl Send for AgentSessionCreateOnComment
impl Sync for AgentSessionCreateOnComment
impl Unpin for AgentSessionCreateOnComment
impl UnwindSafe for AgentSessionCreateOnComment
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