import * as dto from '../dto/index.js'; import * as plugins from '../plugins.js'; export interface IReq_GetPlansForOrganizationId extends plugins.typedRequestInterfaces.implementsTR { method: 'getBillingPlansForOrganizationId'; request: { jwt: string; organizationId: string; }; response: { billingPlans: dto.IBillingPlanDto[]; }; }