UNPKG

wallee

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