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