slack-web-api-client
Version:
Streamlined Slack Web API client for TypeScript
16 lines • 437 B
TypeScript
import type { SlackAPIResponse } from "../response";
export type AdminUsersGetExpirationResponse = SlackAPIResponse & {
error?: string;
needed?: string;
ok: boolean;
provided?: string;
user?: User;
};
export interface User {
email?: string;
expiration_ts?: number;
id?: string;
is_restricted?: boolean;
is_ultra_restricted?: boolean;
}
//# sourceMappingURL=AdminUsersGetExpirationResponse.d.ts.map