/** * Magento Community * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * * OpenAPI spec version: 2.2 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { SalesDataCreditmemoCommentExtensionInterface } from './salesDataCreditmemoCommentExtensionInterface'; /** * Credit memo comment interface. After a customer places and pays for an order and an invoice has been issued, the merchant can create a credit memo to refund all or part of the amount paid for any returned or undelivered items. The memo restores funds to the customer account so that the customer can make future purchases. A credit memo usually includes comments that detail why the credit memo amount was credited to the customer. */ export interface SalesDataCreditmemoCommentInterface { /** * Comment. */ comment: string; /** * Created-at timestamp. */ createdAt?: string; /** * Credit memo ID. */ entityId?: number; /** * Is-customer-notified flag value. */ isCustomerNotified: number; /** * Is-visible-on-storefront flag value. */ isVisibleOnFront: number; /** * Parent ID. */ parentId: number; extensionAttributes?: SalesDataCreditmemoCommentExtensionInterface; }