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