@sourceloop/ctrl-plane-tenant-management-service
Version:
Tenant Management microservice for SaaS control plane
19 lines (18 loc) • 448 B
TypeScript
import { IPlan, ISubscription } from '../../types';
export declare class SubscriptionDTO implements ISubscription {
deleted?: boolean;
deletedOn?: Date;
deletedBy?: string;
createdOn?: Date;
modifiedOn?: Date;
createdBy?: string;
modifiedBy?: string;
id: string;
subscriberId: string;
startDate: string;
endDate: string;
status: number;
planId: string;
invoiceId: string;
plan?: IPlan;
}