package com.sitewhere.assetmodule.magento.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for shoppingCartPaymentMethodResponseEntity complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="shoppingCartPaymentMethodResponseEntity">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="code" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="title" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="cc_types" type="{urn:Magento}associativeArray"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "shoppingCartPaymentMethodResponseEntity", propOrder = {
"code",
"title",
"ccTypes"
})
public class ShoppingCartPaymentMethodResponseEntity {
@XmlElement(required = true)
protected String code;
@XmlElement(required = true)
protected String title;
@XmlElement(name = "cc_types", required = true)
protected AssociativeArray ccTypes;
/**
* Gets the value of the code property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCode() {
return code;
}
/**
* Sets the value of the code property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCode(String value) {
this.code = value;
}
/**
* Gets the value of the title property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTitle() {
return title;
}
/**
* Sets the value of the title property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTitle(String value) {
this.title = value;
}
/**
* Gets the value of the ccTypes property.
*
* @return
* possible object is
* {@link AssociativeArray }
*
*/
public AssociativeArray getCcTypes() {
return ccTypes;
}
/**
* Sets the value of the ccTypes property.
*
* @param value
* allowed object is
* {@link AssociativeArray }
*
*/
public void setCcTypes(AssociativeArray value) {
this.ccTypes = value;
}
}