/** * This code was auto-generated by a Codezu. * * Changes to this file may cause incorrect behavior and will be lost if * the code is regenerated. */ package com.mozu.api.contracts.commerceruntime.orders; import java.io.Serializable; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import org.joda.time.DateTime; import java.io.IOException; import java.lang.ClassNotFoundException; /** * Comments and/or gift message provided by the shopper which are associated with the order. */ @JsonIgnoreProperties(ignoreUnknown = true) public class ShopperNotes implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * Notes entered and saved with an order. These notes may be entered by a shopper on a wishlist or for an order. Comments may also be entered by Admins on an order that may be visible only to authorized shoppers and users. */ protected String comments; public String getComments() { return this.comments; } public void setComments(String comments) { this.comments = comments; } /** * Shopper-entered gift message for the associated order. */ protected String giftMessage; public String getGiftMessage() { return this.giftMessage; } public void setGiftMessage(String giftMessage) { this.giftMessage = giftMessage; } }