UNPKG

amberflo-metering-typescript

Version:
18 lines (17 loc) 526 B
import { IValidatable } from './validation'; export declare class CustomerProductPlanApiPayload implements IValidatable { customerId: string; productPlanId: string; productId?: string; startTimeInSeconds?: number; endTimeInSeconds?: number; constructor(customerId: string, productPlanId: string); validate(): void; } export declare class CustomerProductPlan { customerId: string; productPlanId: string; productId: string; startTimeInSeconds: number; endTimeInSeconds: number; }