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