/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface BillingSubscriptionPeriod */ export interface BillingSubscriptionPeriod { /** * ISO 8601 timestamp of when the billing period started * @type {Date} * @memberof BillingSubscriptionPeriod */ startDate: Date; /** * ISO 8601 timestamp of when the billing period ends * @type {Date} * @memberof BillingSubscriptionPeriod */ endDate: Date; /** * Number of metered usage events recorded in this billing period * @type {number} * @memberof BillingSubscriptionPeriod */ usagesCount?: number; } export declare function BillingSubscriptionPeriodFromJSON(json: any): BillingSubscriptionPeriod; export declare function BillingSubscriptionPeriodFromJSONTyped(json: any, ignoreDiscriminator: boolean): BillingSubscriptionPeriod; export declare function BillingSubscriptionPeriodToJSON(value?: BillingSubscriptionPeriod | null): any;