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