import type { TransactionInvoiceComment } from './TransactionInvoiceComment'; /** * * @export * @interface InvoiceCommentListResponse */ export interface InvoiceCommentListResponse { /** * An array containing the actual response objects. * @type {Array} * @memberof InvoiceCommentListResponse */ readonly data?: Array; /** * 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 | null, ignoreDiscriminator?: boolean): any;