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 apiMethodEntity complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="apiMethodEntity"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="title" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="path" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="aliases" type="{urn:Magento}ArrayOfString"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "apiMethodEntity", propOrder = { "title", "path", "name", "aliases" }) public class ApiMethodEntity { @XmlElement(required = true) protected String title; @XmlElement(required = true) protected String path; @XmlElement(required = true) protected String name; @XmlElement(required = true) protected ArrayOfString aliases; /** * 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 path property. * * @return * possible object is * {@link String } * */ public String getPath() { return path; } /** * Sets the value of the path property. * * @param value * allowed object is * {@link String } * */ public void setPath(String value) { this.path = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the aliases property. * * @return * possible object is * {@link ArrayOfString } * */ public ArrayOfString getAliases() { return aliases; } /** * Sets the value of the aliases property. * * @param value * allowed object is * {@link ArrayOfString } * */ public void setAliases(ArrayOfString value) { this.aliases = value; } }