Class TabbyOrder

java.lang.Object
com.broadleafcommerce.tabby.domain.TabbyOrder
All Implemented Interfaces:
Serializable

public class TabbyOrder extends Object implements Serializable
Author:
Dima Myroniuk (dmyroniuk)
See Also:
  • Constructor Details

    • TabbyOrder

      public TabbyOrder()
  • Method Details

    • getTaxAmount

      public String getTaxAmount()
      Total tax for the order. Default: "0.00".
    • getShippingAmount

      public String getShippingAmount()
      Total shipping cost for the order. Default: "0.00".
    • getDiscountAmount

      public String getDiscountAmount()
      Total discount for the order. Should be positive or zero. Shows up on Tabby App for the Customer's convenience. Default: "0.00".
    • getUpdatedAt

      public String getUpdatedAt()
      Time the order was last updated, in UTC, and displayed in ISO 8601 datetime format.
    • getReferenceId

      public String getReferenceId()
      Merchant-assigned order or cart ID, usually Merchnat OMS's Order_number.
    • getItems

      public List<TabbyOrderItem> getItems()
      Array of objects representing the order items in this payment.
    • setTaxAmount

      public void setTaxAmount(String taxAmount)
      Total tax for the order. Default: "0.00".
    • setShippingAmount

      public void setShippingAmount(String shippingAmount)
      Total shipping cost for the order. Default: "0.00".
    • setDiscountAmount

      public void setDiscountAmount(String discountAmount)
      Total discount for the order. Should be positive or zero. Shows up on Tabby App for the Customer's convenience. Default: "0.00".
    • setUpdatedAt

      public void setUpdatedAt(String updatedAt)
      Time the order was last updated, in UTC, and displayed in ISO 8601 datetime format.
    • setReferenceId

      public void setReferenceId(String referenceId)
      Merchant-assigned order or cart ID, usually Merchnat OMS's Order_number.
    • setItems

      public void setItems(List<TabbyOrderItem> items)
      Array of objects representing the order items in this payment.
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • canEqual

      protected boolean canEqual(Object other)
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object