UNPKG

718 BTypeScriptView Raw
1import { WebAPICallResult } from '../../WebClient';
2export type AdminConversationsGetConversationPrefsResponse = WebAPICallResult & {
3 error?: string;
4 needed?: string;
5 ok?: boolean;
6 prefs?: Prefs;
7 provided?: string;
8};
9export interface Prefs {
10 can_huddle?: CanHuddle;
11 can_thread?: CanThread;
12 enable_at_channel?: CanHuddle;
13 enable_at_here?: CanHuddle;
14 membership_limit?: MembershipLimit;
15 who_can_post?: CanThread;
16}
17export interface CanHuddle {
18 enabled?: boolean;
19}
20export interface CanThread {
21 type?: string[];
22 user?: string[];
23}
24export interface MembershipLimit {
25 value?: number;
26}
27//# sourceMappingURL=AdminConversationsGetConversationPrefsResponse.d.ts.map
\No newline at end of file