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