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