UNPKG

wallee

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