com.mocean.modules.account.mapper.model.Destination Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of moceanapisdk Show documentation
Show all versions of moceanapisdk Show documentation
This is an Mocean SDK written in java. To use it you will need a mocean account. Signup for free at
https://moceanapi.com
package com.mocean.modules.account.mapper.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement(name = "destination")
@XmlAccessorType(XmlAccessType.FIELD)
public class Destination {
@XmlElement(name = "country")
@JsonProperty("country")
private String country;
@XmlElement(name = "operator")
@JsonProperty("operator")
private String operator;
@XmlElement(name = "mcc")
@JsonProperty("mcc")
private String mcc;
@XmlElement(name = "mnc")
@JsonProperty("mnc")
private String mnc;
@XmlElement(name = "price")
@JsonProperty("price")
private String price;
@XmlElement(name = "currency")
@JsonProperty("currency")
private String currency;
public String getCountry() {
return country;
}
public String getOperator() {
return operator;
}
public String getMcc() {
return mcc;
}
public String getMnc() {
return mnc;
}
public String getPrice() {
return price;
}
public String getCurrency() {
return currency;
}
}