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