import * as data from '../data/index.js'; import * as plugins from '../loint-reception.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[]; }; }