UNPKG

934 BTypeScriptView Raw
1import { WebAPICallResult } from '../../WebClient';
2export type AdminFunctionsListResponse = WebAPICallResult & {
3 error?: string;
4 functions?: Function[];
5 needed?: string;
6 ok?: boolean;
7 provided?: string;
8 response_metadata?: ResponseMetadata;
9};
10export interface Function {
11 app_id?: string;
12 callback_id?: string;
13 date_created?: number;
14 date_deleted?: number;
15 date_released?: number;
16 date_updated?: number;
17 description?: string;
18 form_enabled?: boolean;
19 id?: string;
20 input_parameters?: PutParameter[];
21 output_parameters?: PutParameter[];
22 title?: string;
23 type?: string;
24}
25export interface PutParameter {
26 description?: string;
27 is_required?: boolean;
28 name?: string;
29 title?: string;
30 type?: string;
31}
32export interface ResponseMetadata {
33 messages?: string[];
34 next_cursor?: string;
35}
36//# sourceMappingURL=AdminFunctionsListResponse.d.ts.map
\No newline at end of file