com.mozu.api.contracts.paymentservice.GatewayAccount Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mozu-api-core Show documentation
Show all versions of mozu-api-core Show documentation
Mozu Java is a SDK that enables you to create robust Java applications that integrate with the Mozu platform
/**
* 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 bin patterns for a branded credit card.
*/
protected List binPatterns;
public List getBinPatterns() {
return this.binPatterns;
}
public void setBinPatterns(List binPatterns) {
this.binPatterns = binPatterns;
}
protected String countryCode;
public String getCountryCode() {
return this.countryCode;
}
public void setCountryCode(String countryCode) {
this.countryCode = countryCode;
}
protected String gatewayDefinitionId;
public String getGatewayDefinitionId() {
return this.gatewayDefinitionId;
}
public void setGatewayDefinitionId(String gatewayDefinitionId) {
this.gatewayDefinitionId = gatewayDefinitionId;
}
protected String id;
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
protected Boolean isActive;
public Boolean getIsActive() {
return this.isActive;
}
public void setIsActive(Boolean isActive) {
this.isActive = isActive;
}
/**
* The user supplied name that appears in . You can use this field for identification purposes.
*/
protected String name;
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
protected List credentialFields;
public List getCredentialFields() {
return this.credentialFields;
}
public void setCredentialFields(List credentialFields) {
this.credentialFields = credentialFields;
}
}