/** * * @export * @interface TransactionInvoiceCommentCreate */ export interface TransactionInvoiceCommentCreate { /** * The comment's actual content. * @type {string} * @memberof TransactionInvoiceCommentCreate */ content?: string; /** * The transaction invoice that the comment belongs to. * @type {number} * @memberof TransactionInvoiceCommentCreate */ transactionInvoice: number; } /** * Check if a given object implements the TransactionInvoiceCommentCreate interface. */ export declare function instanceOfTransactionInvoiceCommentCreate(value: object): value is TransactionInvoiceCommentCreate; export declare function TransactionInvoiceCommentCreateFromJSON(json: any): TransactionInvoiceCommentCreate; export declare function TransactionInvoiceCommentCreateFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransactionInvoiceCommentCreate; export declare function TransactionInvoiceCommentCreateToJSON(json: any): TransactionInvoiceCommentCreate; export declare function TransactionInvoiceCommentCreateToJSONTyped(value?: TransactionInvoiceCommentCreate | null, ignoreDiscriminator?: boolean): any;