UNPKG

wallee

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