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