All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.authorize.api.contract.v1.GetMerchantDetailsResponse Maven / Gradle / Ivy

Go to download

Authorize.Net SDK includes standard payments, recurring billing, and customer profiles.

There is a newer version: 3.0.0
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2018.11.14 at 11:09:15 AM IST 
//


package net.authorize.api.contract.v1;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType>
 *   <complexContent>
 *     <extension base="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}ANetApiResponse">
 *       <sequence>
 *         <element name="isTestMode" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="processors" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}ArrayOfProcessorType"/>
 *         <element name="merchantName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="gatewayId" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}numericString"/>
 *         <element name="marketTypes" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}ArrayOfMarketType"/>
 *         <element name="productCodes" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}ArrayOfProductCode"/>
 *         <element name="paymentMethods" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}ArrayOfPaymentMethod"/>
 *         <element name="currencies" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}ArrayOfCurrencyCode"/>
 *         <element name="publicClientKey" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="businessInformation" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}customerAddressType" minOccurs="0"/>
 *         <element name="merchantTimeZone" minOccurs="0">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               <maxLength value="100"/>
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element name="contactDetails" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}ArrayOfContactDetail" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "isTestMode", "processors", "merchantName", "gatewayId", "marketTypes", "productCodes", "paymentMethods", "currencies", "publicClientKey", "businessInformation", "merchantTimeZone", "contactDetails" }) @XmlRootElement(name = "getMerchantDetailsResponse") public class GetMerchantDetailsResponse extends ANetApiResponse { protected Boolean isTestMode; @XmlElement(required = true) protected ArrayOfProcessorType processors; @XmlElement(required = true) protected String merchantName; @XmlElement(required = true) protected String gatewayId; @XmlElement(required = true) protected ArrayOfMarketType marketTypes; @XmlElement(required = true) protected ArrayOfProductCode productCodes; @XmlElement(required = true) protected ArrayOfPaymentMethod paymentMethods; @XmlElement(required = true) protected ArrayOfCurrencyCode currencies; protected String publicClientKey; protected CustomerAddressType businessInformation; protected String merchantTimeZone; protected ArrayOfContactDetail contactDetails; /** * Gets the value of the isTestMode property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsTestMode() { return isTestMode; } /** * Sets the value of the isTestMode property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsTestMode(Boolean value) { this.isTestMode = value; } /** * Gets the value of the processors property. * * @return * possible object is * {@link ArrayOfProcessorType } * */ public ArrayOfProcessorType getProcessors() { return processors; } /** * Sets the value of the processors property. * * @param value * allowed object is * {@link ArrayOfProcessorType } * */ public void setProcessors(ArrayOfProcessorType value) { this.processors = value; } /** * Gets the value of the merchantName property. * * @return * possible object is * {@link String } * */ public String getMerchantName() { return merchantName; } /** * Sets the value of the merchantName property. * * @param value * allowed object is * {@link String } * */ public void setMerchantName(String value) { this.merchantName = value; } /** * Gets the value of the gatewayId property. * * @return * possible object is * {@link String } * */ public String getGatewayId() { return gatewayId; } /** * Sets the value of the gatewayId property. * * @param value * allowed object is * {@link String } * */ public void setGatewayId(String value) { this.gatewayId = value; } /** * Gets the value of the marketTypes property. * * @return * possible object is * {@link ArrayOfMarketType } * */ public ArrayOfMarketType getMarketTypes() { return marketTypes; } /** * Sets the value of the marketTypes property. * * @param value * allowed object is * {@link ArrayOfMarketType } * */ public void setMarketTypes(ArrayOfMarketType value) { this.marketTypes = value; } /** * Gets the value of the productCodes property. * * @return * possible object is * {@link ArrayOfProductCode } * */ public ArrayOfProductCode getProductCodes() { return productCodes; } /** * Sets the value of the productCodes property. * * @param value * allowed object is * {@link ArrayOfProductCode } * */ public void setProductCodes(ArrayOfProductCode value) { this.productCodes = value; } /** * Gets the value of the paymentMethods property. * * @return * possible object is * {@link ArrayOfPaymentMethod } * */ public ArrayOfPaymentMethod getPaymentMethods() { return paymentMethods; } /** * Sets the value of the paymentMethods property. * * @param value * allowed object is * {@link ArrayOfPaymentMethod } * */ public void setPaymentMethods(ArrayOfPaymentMethod value) { this.paymentMethods = value; } /** * Gets the value of the currencies property. * * @return * possible object is * {@link ArrayOfCurrencyCode } * */ public ArrayOfCurrencyCode getCurrencies() { return currencies; } /** * Sets the value of the currencies property. * * @param value * allowed object is * {@link ArrayOfCurrencyCode } * */ public void setCurrencies(ArrayOfCurrencyCode value) { this.currencies = value; } /** * Gets the value of the publicClientKey property. * * @return * possible object is * {@link String } * */ public String getPublicClientKey() { return publicClientKey; } /** * Sets the value of the publicClientKey property. * * @param value * allowed object is * {@link String } * */ public void setPublicClientKey(String value) { this.publicClientKey = value; } /** * Gets the value of the businessInformation property. * * @return * possible object is * {@link CustomerAddressType } * */ public CustomerAddressType getBusinessInformation() { return businessInformation; } /** * Sets the value of the businessInformation property. * * @param value * allowed object is * {@link CustomerAddressType } * */ public void setBusinessInformation(CustomerAddressType value) { this.businessInformation = value; } /** * Gets the value of the merchantTimeZone property. * * @return * possible object is * {@link String } * */ public String getMerchantTimeZone() { return merchantTimeZone; } /** * Sets the value of the merchantTimeZone property. * * @param value * allowed object is * {@link String } * */ public void setMerchantTimeZone(String value) { this.merchantTimeZone = value; } /** * Gets the value of the contactDetails property. * * @return * possible object is * {@link ArrayOfContactDetail } * */ public ArrayOfContactDetail getContactDetails() { return contactDetails; } /** * Sets the value of the contactDetails property. * * @param value * allowed object is * {@link ArrayOfContactDetail } * */ public void setContactDetails(ArrayOfContactDetail value) { this.contactDetails = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy