slack-web-api-client
Version:
Streamlined Slack Web API client for TypeScript
31 lines • 799 B
TypeScript
import type { SlackAPIResponse } from "../response";
export type BookmarksListResponse = SlackAPIResponse & {
bookmarks?: Bookmark[];
error?: string;
needed?: string;
ok: boolean;
provided?: string;
response_metadata?: ResponseMetadata;
};
export interface Bookmark {
app_action_id?: string;
app_id?: string;
channel_id?: string;
date_created?: number;
date_updated?: number;
emoji?: string;
entity_id?: string;
icon_url?: string;
id?: string;
last_updated_by_team_id?: string;
last_updated_by_user_id?: string;
link?: string;
rank?: string;
shortcut_id?: string;
title?: string;
type?: string;
}
export interface ResponseMetadata {
messages?: string[];
}
//# sourceMappingURL=BookmarksListResponse.d.ts.map