import type { SubscriptionMetricUsageReport } from './SubscriptionMetricUsageReport'; /** * * @export * @interface MetricUsageReportListResponse */ export interface MetricUsageReportListResponse { /** * An array containing the actual response objects. * @type {Array} * @memberof MetricUsageReportListResponse */ readonly data?: Array; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof MetricUsageReportListResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof MetricUsageReportListResponse */ readonly limit?: number; } /** * Check if a given object implements the MetricUsageReportListResponse interface. */ export declare function instanceOfMetricUsageReportListResponse(value: object): value is MetricUsageReportListResponse; export declare function MetricUsageReportListResponseFromJSON(json: any): MetricUsageReportListResponse; export declare function MetricUsageReportListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): MetricUsageReportListResponse; export declare function MetricUsageReportListResponseToJSON(json: any): MetricUsageReportListResponse; export declare function MetricUsageReportListResponseToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;