wallee
Version:
TypeScript/JavaScript client for wallee
41 lines (40 loc) • 1.86 kB
TypeScript
import type { SubscriptionLedgerEntry } from './SubscriptionLedgerEntry';
/**
*
* @export
* @interface SubscriptionLedgerEntrySearchResponse
*/
export interface SubscriptionLedgerEntrySearchResponse {
/**
* An array containing the actual response objects.
* @type {Array<SubscriptionLedgerEntry>}
* @memberof SubscriptionLedgerEntrySearchResponse
*/
readonly data?: Array<SubscriptionLedgerEntry>;
/**
* 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<SubscriptionLedgerEntrySearchResponse, 'data' | 'offset' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;