/** * 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.sitesettings.order; 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.GatewayAccount; import com.mozu.api.contracts.paymentservice.GatewayDefinition; /** * Properties of a payment gateway defined for the site. */ @JsonIgnoreProperties(ignoreUnknown = true) public class Gateway implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * If true, the credential fields for the gateway are configured with valid values. For security purposes, does not return the credential fields for the gateway subresource. */ protected Boolean areGatewayCredentialFieldsSet; public Boolean getAreGatewayCredentialFieldsSet() { return this.areGatewayCredentialFieldsSet; } public void setAreGatewayCredentialFieldsSet(Boolean areGatewayCredentialFieldsSet) { this.areGatewayCredentialFieldsSet = areGatewayCredentialFieldsSet; } /** * The types of credit cards supported by the payment gateway. */ protected List<String> supportedCards; public List<String> getSupportedCards() { return this.supportedCards; } public void setSupportedCards(List<String> supportedCards) { this.supportedCards = supportedCards; } /** * Account information associated with the specified payment gateway. */ protected GatewayAccount gatewayAccount; public GatewayAccount getGatewayAccount() { return this.gatewayAccount; } public void setGatewayAccount(GatewayAccount gatewayAccount) { this.gatewayAccount = gatewayAccount; } /** * Properties of the payment gateway definition. */ protected GatewayDefinition gatewayDefinition; public GatewayDefinition getGatewayDefinition() { return this.gatewayDefinition; } public void setGatewayDefinition(GatewayDefinition gatewayDefinition) { this.gatewayDefinition = gatewayDefinition; } }