UNPKG

wallee

Version:
35 lines (34 loc) 1.36 kB
import type { SubscriptionMetric } from './SubscriptionMetric'; /** * * @export * @interface MetricListResponse */ export interface MetricListResponse { /** * An array containing the actual response objects. * @type {Array<SubscriptionMetric>} * @memberof MetricListResponse */ readonly data?: Array<SubscriptionMetric>; /** * 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<MetricListResponse, 'data' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;