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