pub struct AgentSessionUpdateInput {
pub external_link: Option<String>,
pub external_urls: Option<Vec<Box<AgentSessionExternalUrlInput>>>,
pub added_external_urls: Option<Vec<Box<AgentSessionExternalUrlInput>>>,
pub removed_external_urls: Option<Vec<String>>,
pub plan: Option<Value>,
pub dismissed_at: Option<DateTime<Utc>>,
pub user_state: Option<Vec<Box<AgentSessionUserStateInput>>>,
}Fields§
§external_link: Option<String>§external_urls: Option<Vec<Box<AgentSessionExternalUrlInput>>>§added_external_urls: Option<Vec<Box<AgentSessionExternalUrlInput>>>§removed_external_urls: Option<Vec<String>>§plan: Option<Value>§dismissed_at: Option<DateTime<Utc>>§user_state: Option<Vec<Box<AgentSessionUserStateInput>>>Trait Implementations§
Source§impl Clone for AgentSessionUpdateInput
impl Clone for AgentSessionUpdateInput
Source§fn clone(&self) -> AgentSessionUpdateInput
fn clone(&self) -> AgentSessionUpdateInput
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 AgentSessionUpdateInput
impl Debug for AgentSessionUpdateInput
Source§impl Default for AgentSessionUpdateInput
impl Default for AgentSessionUpdateInput
Source§fn default() -> AgentSessionUpdateInput
fn default() -> AgentSessionUpdateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AgentSessionUpdateInput
impl<'de> Deserialize<'de> for AgentSessionUpdateInput
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 AgentSessionUpdateInput
impl RefUnwindSafe for AgentSessionUpdateInput
impl Send for AgentSessionUpdateInput
impl Sync for AgentSessionUpdateInput
impl Unpin for AgentSessionUpdateInput
impl UnwindSafe for AgentSessionUpdateInput
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