wallee
Version:
TypeScript/JavaScript client for wallee
41 lines (40 loc) • 1.78 kB
TypeScript
import type { SubscriptionMetricUsageReport } from './SubscriptionMetricUsageReport';
/**
*
* @export
* @interface MetricUsageReportSearchResponse
*/
export interface MetricUsageReportSearchResponse {
/**
* An array containing the actual response objects.
* @type {Array<SubscriptionMetricUsageReport>}
* @memberof MetricUsageReportSearchResponse
*/
readonly data?: Array<SubscriptionMetricUsageReport>;
/**
* 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<MetricUsageReportSearchResponse, 'data' | 'offset' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;