slack-web-api-client
Version:
Streamlined Slack Web API client for TypeScript
18 lines • 487 B
TypeScript
import type { SlackAPIResponse } from "../response";
export type TeamBillableInfoResponse = SlackAPIResponse & {
billable_info?: {
[key: string]: BillableInfo;
};
error?: string;
needed?: string;
ok: boolean;
provided?: string;
response_metadata?: ResponseMetadata;
};
export interface BillableInfo {
billing_active?: boolean;
}
export interface ResponseMetadata {
next_cursor?: string;
}
//# sourceMappingURL=TeamBillableInfoResponse.d.ts.map