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