1 | import type { WebAPICallResult } from '../../WebClient';
|
2 | export 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 | };
|
12 | export interface BillableInfo {
|
13 | billing_active?: boolean;
|
14 | }
|
15 | export interface ResponseMetadata {
|
16 | next_cursor?: string;
|
17 | }
|
18 | //# sourceMappingURL=TeamBillableInfoResponse.d.ts.map |
\ | No newline at end of file |