Struct dify_client::response::ConversationsData
source · pub struct ConversationsData {
pub id: String,
pub name: String,
pub inputs: HashMap<String, String>,
pub introduction: String,
pub created_at: u64,
}Expand description
会话数据
Fields§
§id: String会话 ID
name: String会话名称,默认为会话中用户最开始问题的截取。
inputs: HashMap<String, String>用户输入参数。
introduction: String开场白
created_at: u64创建时间
Trait Implementations§
source§impl Debug for ConversationsData
impl Debug for ConversationsData
source§impl<'de> Deserialize<'de> for ConversationsData
impl<'de> Deserialize<'de> for ConversationsData
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 ConversationsData
impl RefUnwindSafe for ConversationsData
impl Send for ConversationsData
impl Sync for ConversationsData
impl Unpin for ConversationsData
impl UnwindSafe for ConversationsData
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