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