/** * 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.payments; import java.util.List; import java.util.HashMap; import java.io.Serializable; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import org.joda.time.DateTime; import java.io.IOException; import java.lang.ClassNotFoundException; import com.mozu.api.contracts.commerceruntime.payments.PurchaseOrderCustomField; import com.mozu.api.contracts.commerceruntime.payments.PurchaseOrderPaymentTerm; /** * The details of the purchase order payment. */ @JsonIgnoreProperties(ignoreUnknown = true) public class PurchaseOrderPayment implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * The purchase order number. */ protected String purchaseOrderNumber; public String getPurchaseOrderNumber() { return this.purchaseOrderNumber; } public void setPurchaseOrderNumber(String purchaseOrderNumber) { this.purchaseOrderNumber = purchaseOrderNumber; } /** * Details of the custom text fields associated with the purchase order.Refer to [Custom Text Fields](https://www.mozu.com/docs/guides/orders/purchase-order.htm#custom_text_fields) in the Purchase Order guides topic for more information. */ protected List<PurchaseOrderCustomField> customFields; public List<PurchaseOrderCustomField> getCustomFields() { return this.customFields; } public void setCustomFields(List<PurchaseOrderCustomField> customFields) { this.customFields = customFields; } /** * The details of the payment terms. The payment terms are made up of a and a .Refer to [Payment Terms](https://www.mozu.com/docs/guides/orders/purchase-order.htm#payment_terms) in the Purchase Order guides topic for more information. */ protected PurchaseOrderPaymentTerm paymentTerm; public PurchaseOrderPaymentTerm getPaymentTerm() { return this.paymentTerm; } public void setPaymentTerm(PurchaseOrderPaymentTerm paymentTerm) { this.paymentTerm = paymentTerm; } }