Package net.authorize.api.contract.v1
Class MobileDeviceType
- java.lang.Object
-
- net.authorize.api.contract.v1.MobileDeviceType
-
public class MobileDeviceType extends Object
Java class for mobileDeviceType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="mobileDeviceType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="mobileDeviceId"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <maxLength value="60"/> </restriction> </simpleType> </element> <element name="description" minOccurs="0"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <maxLength value="60"/> </restriction> </simpleType> </element> <element name="phoneNumber" minOccurs="0"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <maxLength value="20"/> </restriction> </simpleType> </element> <element name="devicePlatform" minOccurs="0"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <maxLength value="255"/> </restriction> </simpleType> </element> <element name="deviceActivation" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}deviceActivationEnum" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected Stringdescriptionprotected DeviceActivationEnumdeviceActivationprotected StringdevicePlatformprotected StringmobileDeviceIdprotected StringphoneNumber
-
Constructor Summary
Constructors Constructor Description MobileDeviceType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDescription()Gets the value of the description property.DeviceActivationEnumgetDeviceActivation()Gets the value of the deviceActivation property.StringgetDevicePlatform()Gets the value of the devicePlatform property.StringgetMobileDeviceId()Gets the value of the mobileDeviceId property.StringgetPhoneNumber()Gets the value of the phoneNumber property.voidsetDescription(String value)Sets the value of the description property.voidsetDeviceActivation(DeviceActivationEnum value)Sets the value of the deviceActivation property.voidsetDevicePlatform(String value)Sets the value of the devicePlatform property.voidsetMobileDeviceId(String value)Sets the value of the mobileDeviceId property.voidsetPhoneNumber(String value)Sets the value of the phoneNumber property.
-
-
-
Field Detail
-
mobileDeviceId
protected String mobileDeviceId
-
description
protected String description
-
phoneNumber
protected String phoneNumber
-
devicePlatform
protected String devicePlatform
-
deviceActivation
protected DeviceActivationEnum deviceActivation
-
-
Method Detail
-
getMobileDeviceId
public String getMobileDeviceId()
Gets the value of the mobileDeviceId property.- Returns:
- possible object is
String
-
setMobileDeviceId
public void setMobileDeviceId(String value)
Sets the value of the mobileDeviceId property.- Parameters:
value- allowed object isString
-
getDescription
public String getDescription()
Gets the value of the description property.- Returns:
- possible object is
String
-
setDescription
public void setDescription(String value)
Sets the value of the description property.- Parameters:
value- allowed object isString
-
getPhoneNumber
public String getPhoneNumber()
Gets the value of the phoneNumber property.- Returns:
- possible object is
String
-
setPhoneNumber
public void setPhoneNumber(String value)
Sets the value of the phoneNumber property.- Parameters:
value- allowed object isString
-
getDevicePlatform
public String getDevicePlatform()
Gets the value of the devicePlatform property.- Returns:
- possible object is
String
-
setDevicePlatform
public void setDevicePlatform(String value)
Sets the value of the devicePlatform property.- Parameters:
value- allowed object isString
-
getDeviceActivation
public DeviceActivationEnum getDeviceActivation()
Gets the value of the deviceActivation property.- Returns:
- possible object is
DeviceActivationEnum
-
setDeviceActivation
public void setDeviceActivation(DeviceActivationEnum value)
Sets the value of the deviceActivation property.- Parameters:
value- allowed object isDeviceActivationEnum
-
-