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