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