/** * 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.paymentservice; 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.paymentservice.GatewayCredentialFieldValue; /** * Account information for the payment gateway. */ @JsonIgnoreProperties(ignoreUnknown = true) public class GatewayAccount implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * The 2-letter geographic code representing the country for the physical or mailing address. Currently limited to the US. */ protected String countryCode; public String getCountryCode() { return this.countryCode; } public void setCountryCode(String countryCode) { this.countryCode = countryCode; } /** * Identifier of the payment gateway. */ protected String gatewayDefinitionId; public String getGatewayDefinitionId() { return this.gatewayDefinitionId; } public void setGatewayDefinitionId(String gatewayDefinitionId) { this.gatewayDefinitionId = gatewayDefinitionId; } /** * 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 String id; public String getId() { return this.id; } public void setId(String id) { this.id = id; } /** * Indicates if the object or feature is active. This indicator is used for subscriptions (at the site or tenant level), customer accounts, products and variations. */ protected Boolean isActive; public Boolean getIsActive() { return this.isActive; } public void setIsActive(Boolean isActive) { this.isActive = isActive; } /** * List of credential fields for the payment gateway account. */ protected List<GatewayCredentialFieldValue> credentialFields; public List<GatewayCredentialFieldValue> getCredentialFields() { return this.credentialFields; } public void setCredentialFields(List<GatewayCredentialFieldValue> credentialFields) { this.credentialFields = credentialFields; } }