UNPKG

wallee

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