UNPKG

487 BTypeScriptView Raw
1import { WebAPICallResult } from '../../WebClient';
2export type TeamBillableInfoResponse = WebAPICallResult & {
3 billable_info?: {
4 [key: string]: BillableInfo;
5 };
6 error?: string;
7 needed?: string;
8 ok?: boolean;
9 provided?: string;
10 response_metadata?: ResponseMetadata;
11};
12export interface BillableInfo {
13 billing_active?: boolean;
14}
15export interface ResponseMetadata {
16 next_cursor?: string;
17}
18//# sourceMappingURL=TeamBillableInfoResponse.d.ts.map
\No newline at end of file