UNPKG

wallee

Version:
41 lines (40 loc) 1.63 kB
import type { TransactionCompletion } from './TransactionCompletion'; /** * * @export * @interface CompletionSearchResponse */ export interface CompletionSearchResponse { /** * An array containing the actual response objects. * @type {Array<TransactionCompletion>} * @memberof CompletionSearchResponse */ readonly data?: Array<TransactionCompletion>; /** * The number of skipped objects. * @type {number} * @memberof CompletionSearchResponse */ readonly offset?: number; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof CompletionSearchResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof CompletionSearchResponse */ readonly limit?: number; } /** * Check if a given object implements the CompletionSearchResponse interface. */ export declare function instanceOfCompletionSearchResponse(value: object): value is CompletionSearchResponse; export declare function CompletionSearchResponseFromJSON(json: any): CompletionSearchResponse; export declare function CompletionSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CompletionSearchResponse; export declare function CompletionSearchResponseToJSON(json: any): CompletionSearchResponse; export declare function CompletionSearchResponseToJSONTyped(value?: Omit<CompletionSearchResponse, 'data' | 'offset' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;