import type { TransactionInvoice } from './TransactionInvoice'; /** * * @export * @interface TransactionInvoiceComment */ export interface TransactionInvoiceComment { /** * The ID of the space this object belongs to. * @type {number} * @memberof TransactionInvoiceComment */ readonly linkedSpaceId?: number; /** * Whether the comment is pinned to the top. * @type {boolean} * @memberof TransactionInvoiceComment */ readonly pinned?: boolean; /** * The ID of the user the comment was last updated by. * @type {number} * @memberof TransactionInvoiceComment */ readonly editedBy?: number; /** * The ID of the user the comment was created by. * @type {number} * @memberof TransactionInvoiceComment */ readonly createdBy?: number; /** * A unique identifier for the object. * @type {number} * @memberof TransactionInvoiceComment */ readonly id?: number; /** * The date and time when the comment was last updated. * @type {Date} * @memberof TransactionInvoiceComment */ readonly editedOn?: Date; /** * The date and time when the object was created. * @type {Date} * @memberof TransactionInvoiceComment */ readonly createdOn?: Date; /** * * @type {TransactionInvoice} * @memberof TransactionInvoiceComment */ transactionInvoice?: TransactionInvoice; /** * The version is used for optimistic locking and incremented whenever the object is updated. * @type {number} * @memberof TransactionInvoiceComment */ readonly version?: number; /** * The comment's actual content. * @type {string} * @memberof TransactionInvoiceComment */ readonly content?: string; } /** * Check if a given object implements the TransactionInvoiceComment interface. */ export declare function instanceOfTransactionInvoiceComment(value: object): value is TransactionInvoiceComment; export declare function TransactionInvoiceCommentFromJSON(json: any): TransactionInvoiceComment; export declare function TransactionInvoiceCommentFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransactionInvoiceComment; export declare function TransactionInvoiceCommentToJSON(json: any): TransactionInvoiceComment; export declare function TransactionInvoiceCommentToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;