com.omgm.speedy.eps.soap.model.ResultPhoneNumber Maven / Gradle / Ivy
package com.omgm.speedy.eps.soap.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for resultPhoneNumber complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="resultPhoneNumber">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="internal" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
* Instances of this class are returned as part of client data in Speedy web service method calls
*
* @since 1.0.0
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "resultPhoneNumber", propOrder = {
"internal",
"number"
})
public class ResultPhoneNumber {
/**
* An extension number
*/
protected String internal;
/**
* Phone number (example: "0888123456", "+35932261020" etc.)
*/
protected String number;
/**
* Gets the extension number
* @return Extension number
*/
public String getInternal() {
return internal;
}
/**
* Sets the extension number
* @param internal Extension number
*/
public void setInternal(String internal) {
this.internal = internal;
}
/**
* Gets the phone number
* @return Phone number
*/
public String getNumber() {
return number;
}
/**
* Sets the phone number
* @param number Phone number
*/
public void setNumber(String number) {
this.number = number;
}
}