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