UNPKG

wallee

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