18 lines
448 B
TypeScript
18 lines
448 B
TypeScript
import * as data from '../data/index.js';
|
|
import * as plugins from '../plugins.js';
|
|
|
|
export interface IReq_GetPlansForOrganizationId
|
|
extends plugins.typedRequestInterfaces.implementsTR<
|
|
plugins.typedRequestInterfaces.ITypedRequest,
|
|
IReq_GetPlansForOrganizationId
|
|
> {
|
|
method: 'getBillingPlansForOrganizationId';
|
|
request: {
|
|
jwt: string;
|
|
organizationId: string;
|
|
};
|
|
response: {
|
|
billingPlans: data.IBillingPlan[];
|
|
};
|
|
}
|