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