UNPKG

wallee

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