slack-web-api-client
Version:
Streamlined Slack Web API client for TypeScript
30 lines • 809 B
TypeScript
import type { SlackAPIResponse } from "../response";
export type AdminInviteRequestsDeniedListResponse = SlackAPIResponse & {
denied_requests?: DeniedRequest[];
error?: string;
needed?: string;
ok: boolean;
provided?: string;
response_metadata?: ResponseMetadata;
};
export interface DeniedRequest {
denied_by?: DeniedBy;
invite_request?: InviteRequest;
}
export interface DeniedBy {
actor_id?: string;
actor_type?: string;
}
export interface InviteRequest {
channel_ids?: string[];
date_created?: number;
email?: string;
id?: string;
invite_type?: string;
request_reason?: string;
requester_ids?: string[];
}
export interface ResponseMetadata {
next_cursor?: string;
}
//# sourceMappingURL=AdminInviteRequestsDeniedListResponse.d.ts.map