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