1 | export interface DirectThreadRepositoryBroadcastResponseRootObject {
|
2 | action: string;
|
3 | status_code: string;
|
4 | payload: DirectThreadRepositoryBroadcastResponsePayload;
|
5 | message_metadata: DirectThreadRepositoryBroadcastResponseMessage_metadata[];
|
6 | status: string;
|
7 | }
|
8 | export interface DirectThreadRepositoryBroadcastResponseMessage_metadata {
|
9 | client_context: string;
|
10 | item_id: string;
|
11 | timestamp: string;
|
12 | thread_id: string;
|
13 | participant_ids: string[];
|
14 | }
|
15 | export interface DirectThreadRepositoryBroadcastResponsePayload {
|
16 | client_context: string;
|
17 | item_id: string;
|
18 | timestamp: string;
|
19 | thread_id: string;
|
20 | }
|