@sourceloop/ctrl-plane-subscription-service
Version:
Subscription management microservice for SaaS control plane.
17 lines (16 loc) • 419 B
TypeScript
import { UserModifiableEntity } from '@sourceloop/core';
export declare class Plan extends UserModifiableEntity {
id: string;
name: string;
description?: string;
tier: string;
size?: string;
price: number;
metaData?: object;
billingCycleId: string;
currencyId: string;
constructor(data?: Partial<Plan>);
}
export interface PlanRelations {
}
export type PlanWithRelations = Plan;