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