UNPKG

wallee

Version:
35 lines (34 loc) 1.44 kB
import type { TransactionCompletion } from './TransactionCompletion'; /** * * @export * @interface CompletionListResponse */ export interface CompletionListResponse { /** * An array containing the actual response objects. * @type {Array<TransactionCompletion>} * @memberof CompletionListResponse */ readonly data?: Array<TransactionCompletion>; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof CompletionListResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof CompletionListResponse */ readonly limit?: number; } /** * Check if a given object implements the CompletionListResponse interface. */ export declare function instanceOfCompletionListResponse(value: object): value is CompletionListResponse; export declare function CompletionListResponseFromJSON(json: any): CompletionListResponse; export declare function CompletionListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CompletionListResponse; export declare function CompletionListResponseToJSON(json: any): CompletionListResponse; export declare function CompletionListResponseToJSONTyped(value?: Omit<CompletionListResponse, 'data' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;