amberflo-metering-typescript
Version:
Amberflo metering client for TypeScript
18 lines (17 loc) • 526 B
TypeScript
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;
}