/** * 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.customer; 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.core.AuditInfo; import com.mozu.api.contracts.customer.CustomerPurchaseOrderPaymentTerm; /** * Mozu.Customer.Contracts.CustomerPurchaseOrderAccount ApiType DOCUMENT_HERE */ @JsonIgnoreProperties(ignoreUnknown = true) public class CustomerPurchaseOrderAccount implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * Unique identifier of the customer account generated by the system. Account IDs are generated at account creation. */ protected Integer accountId; public Integer getAccountId() { return this.accountId; } public void setAccountId(Integer accountId) { this.accountId = accountId; } /** * Mozu.Customer.Contracts.CustomerPurchaseOrderAccount availableBalance ApiTypeMember DOCUMENT_HERE */ protected Double availableBalance; public Double getAvailableBalance() { return this.availableBalance; } public void setAvailableBalance(Double availableBalance) { this.availableBalance = availableBalance; } /** * Mozu.Customer.Contracts.CustomerPurchaseOrderAccount creditLimit ApiTypeMember DOCUMENT_HERE */ protected Double creditLimit; public Double getCreditLimit() { return this.creditLimit; } public void setCreditLimit(Double creditLimit) { this.creditLimit = creditLimit; } /** * Unique identifier of the source product property. For a product field it will be the name of the field. For a product attribute it will be the Attribute FQN. */ protected Integer id; public Integer getId() { return this.id; } public void setId(Integer id) { this.id = id; } /** * Indicates if the object or process is enabled. This indicator is used on external payment workflows and product option values. For product options, if true, the product option value is available for a shopper to choose. During configuration, this property will be false if the option value is invalid with other selected options. For external payment workflows, if true, the workflow is enabled and available for routing payments for the submitted order. */ protected Boolean isEnabled; public Boolean getIsEnabled() { return this.isEnabled; } public void setIsEnabled(Boolean isEnabled) { this.isEnabled = isEnabled; } /** * Mozu.Customer.Contracts.CustomerPurchaseOrderAccount overdraftAllowance ApiTypeMember DOCUMENT_HERE */ protected Double overdraftAllowance; public Double getOverdraftAllowance() { return this.overdraftAllowance; } public void setOverdraftAllowance(Double overdraftAllowance) { this.overdraftAllowance = overdraftAllowance; } /** * Indicates type of overdraft. Possible values are "Percent" and "Amount" */ protected String overdraftAllowanceType; public String getOverdraftAllowanceType() { return this.overdraftAllowanceType; } public void setOverdraftAllowanceType(String overdraftAllowanceType) { this.overdraftAllowanceType = overdraftAllowanceType; } /** * Mozu.Customer.Contracts.CustomerPurchaseOrderAccount totalAvailableBalance ApiTypeMember DOCUMENT_HERE */ protected Double totalAvailableBalance; public Double getTotalAvailableBalance() { return this.totalAvailableBalance; } public void setTotalAvailableBalance(Double totalAvailableBalance) { this.totalAvailableBalance = totalAvailableBalance; } /** * Basic audit info about the object, including date, time, and user account. Identifier and datetime stamp information recorded when a user or application creates, updates, or deletes a resource entity. This value is system-supplied and read-only. */ protected AuditInfo auditInfo; public AuditInfo getAuditInfo() { return this.auditInfo; } public void setAuditInfo(AuditInfo auditInfo) { this.auditInfo = auditInfo; } /** * Mozu.Customer.Contracts.CustomerPurchaseOrderAccount customerPurchaseOrderPaymentTerms ApiTypeMember DOCUMENT_HERE */ protected List<CustomerPurchaseOrderPaymentTerm> customerPurchaseOrderPaymentTerms; public List<CustomerPurchaseOrderPaymentTerm> getCustomerPurchaseOrderPaymentTerms() { return this.customerPurchaseOrderPaymentTerms; } public void setCustomerPurchaseOrderPaymentTerms(List<CustomerPurchaseOrderPaymentTerm> customerPurchaseOrderPaymentTerms) { this.customerPurchaseOrderPaymentTerms = customerPurchaseOrderPaymentTerms; } }