import type { ChargeBankTransaction } from './ChargeBankTransaction'; /** * * @export * @interface ChargeBankTransactionListResponse */ export interface ChargeBankTransactionListResponse { /** * An array containing the actual response objects. * @type {Array} * @memberof ChargeBankTransactionListResponse */ readonly data?: Array; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof ChargeBankTransactionListResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof ChargeBankTransactionListResponse */ readonly limit?: number; } /** * Check if a given object implements the ChargeBankTransactionListResponse interface. */ export declare function instanceOfChargeBankTransactionListResponse(value: object): value is ChargeBankTransactionListResponse; export declare function ChargeBankTransactionListResponseFromJSON(json: any): ChargeBankTransactionListResponse; export declare function ChargeBankTransactionListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChargeBankTransactionListResponse; export declare function ChargeBankTransactionListResponseToJSON(json: any): ChargeBankTransactionListResponse; export declare function ChargeBankTransactionListResponseToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;