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