wallee
Version:
TypeScript/JavaScript client for wallee
41 lines (40 loc) • 1.81 kB
TypeScript
import type { RefundBankTransaction } from './RefundBankTransaction';
/**
*
* @export
* @interface RefundBankTransactionSearchResponse
*/
export interface RefundBankTransactionSearchResponse {
/**
* An array containing the actual response objects.
* @type {Array<RefundBankTransaction>}
* @memberof RefundBankTransactionSearchResponse
*/
readonly data?: Array<RefundBankTransaction>;
/**
* The number of skipped objects.
* @type {number}
* @memberof RefundBankTransactionSearchResponse
*/
readonly offset?: number;
/**
* Whether there are more objects available after this set. If false, there are no more objects to retrieve.
* @type {boolean}
* @memberof RefundBankTransactionSearchResponse
*/
readonly hasMore?: boolean;
/**
* The applied limit on the number of objects returned.
* @type {number}
* @memberof RefundBankTransactionSearchResponse
*/
readonly limit?: number;
}
/**
* Check if a given object implements the RefundBankTransactionSearchResponse interface.
*/
export declare function instanceOfRefundBankTransactionSearchResponse(value: object): value is RefundBankTransactionSearchResponse;
export declare function RefundBankTransactionSearchResponseFromJSON(json: any): RefundBankTransactionSearchResponse;
export declare function RefundBankTransactionSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): RefundBankTransactionSearchResponse;
export declare function RefundBankTransactionSearchResponseToJSON(json: any): RefundBankTransactionSearchResponse;
export declare function RefundBankTransactionSearchResponseToJSONTyped(value?: Omit<RefundBankTransactionSearchResponse, 'data' | 'offset' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;