import { SalesDataInvoiceCommentExtensionInterface } from './salesDataInvoiceCommentExtensionInterface'; export interface SalesDataInvoiceCommentInterface { isCustomerNotified: number; parentId: number; extensionAttributes?: SalesDataInvoiceCommentExtensionInterface; comment: string; isVisibleOnFront: number; createdAt?: string; entityId?: number; }