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