wallee
Version:
TypeScript/JavaScript client for wallee
35 lines (34 loc) • 1.49 kB
TypeScript
import type { BankTransaction } from './BankTransaction';
/**
*
* @export
* @interface BankTransactionListResponse
*/
export interface BankTransactionListResponse {
/**
* An array containing the actual response objects.
* @type {Array<BankTransaction>}
* @memberof BankTransactionListResponse
*/
readonly data?: Array<BankTransaction>;
/**
* Whether there are more objects available after this set. If false, there are no more objects to retrieve.
* @type {boolean}
* @memberof BankTransactionListResponse
*/
readonly hasMore?: boolean;
/**
* The applied limit on the number of objects returned.
* @type {number}
* @memberof BankTransactionListResponse
*/
readonly limit?: number;
}
/**
* Check if a given object implements the BankTransactionListResponse interface.
*/
export declare function instanceOfBankTransactionListResponse(value: object): value is BankTransactionListResponse;
export declare function BankTransactionListResponseFromJSON(json: any): BankTransactionListResponse;
export declare function BankTransactionListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): BankTransactionListResponse;
export declare function BankTransactionListResponseToJSON(json: any): BankTransactionListResponse;
export declare function BankTransactionListResponseToJSONTyped(value?: Omit<BankTransactionListResponse, 'data' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;