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