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