pub struct GetTeamChatHistoryResponse {
pub team_id: Option<String>,
pub conversation_history: Option<Vec<TeamChatTurn>>,
pub total: Option<i64>,
pub chat_state: Option<Map<String, Value>>,
}Expand description
GetTeamChatHistoryResponse model.
Fields§
§team_id: Option<String>§conversation_history: Option<Vec<TeamChatTurn>>§total: Option<i64>§chat_state: Option<Map<String, Value>>Trait Implementations§
Source§impl Clone for GetTeamChatHistoryResponse
impl Clone for GetTeamChatHistoryResponse
Source§fn clone(&self) -> GetTeamChatHistoryResponse
fn clone(&self) -> GetTeamChatHistoryResponse
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 Debug for GetTeamChatHistoryResponse
impl Debug for GetTeamChatHistoryResponse
Source§impl Default for GetTeamChatHistoryResponse
impl Default for GetTeamChatHistoryResponse
Source§fn default() -> GetTeamChatHistoryResponse
fn default() -> GetTeamChatHistoryResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetTeamChatHistoryResponse
impl<'de> Deserialize<'de> for GetTeamChatHistoryResponse
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
impl StructuralPartialEq for GetTeamChatHistoryResponse
Auto Trait Implementations§
impl Freeze for GetTeamChatHistoryResponse
impl RefUnwindSafe for GetTeamChatHistoryResponse
impl Send for GetTeamChatHistoryResponse
impl Sync for GetTeamChatHistoryResponse
impl Unpin for GetTeamChatHistoryResponse
impl UnsafeUnpin for GetTeamChatHistoryResponse
impl UnwindSafe for GetTeamChatHistoryResponse
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