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