/** * * @export * @interface TransactionInvoiceCommentActive */ export interface TransactionInvoiceCommentActive { /** * The comment's actual content. * @type {string} * @memberof TransactionInvoiceCommentActive */ content?: string; /** * The version number indicates the version of the entity. The version is incremented whenever the entity is changed. * @type {number} * @memberof TransactionInvoiceCommentActive */ version: number; } /** * Check if a given object implements the TransactionInvoiceCommentActive interface. */ export declare function instanceOfTransactionInvoiceCommentActive(value: object): value is TransactionInvoiceCommentActive; export declare function TransactionInvoiceCommentActiveFromJSON(json: any): TransactionInvoiceCommentActive; export declare function TransactionInvoiceCommentActiveFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransactionInvoiceCommentActive; export declare function TransactionInvoiceCommentActiveToJSON(json: any): TransactionInvoiceCommentActive; export declare function TransactionInvoiceCommentActiveToJSONTyped(value?: TransactionInvoiceCommentActive | null, ignoreDiscriminator?: boolean): any;