bridge_common/types/
agents_chats.rs

1
2
3
4
5
6
7
8
// Copyright 2024 StarfleetAI
// SPDX-License-Identifier: Apache-2.0

pub struct AgentsChat {
    pub company_id: i32,
    pub agent_id: i32,
    pub chat_id: i32,
}