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