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