
ru.sms_activate.response.extra.SMSActivateCountry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SMSActivateApi Show documentation
Show all versions of SMSActivateApi Show documentation
Lib for working with sms activate API.
package ru.sms_activate.response.extra;
import org.jetbrains.annotations.NotNull;
public class SMSActivateCountry {
/**
* Country id.
*/
private int id;
/**
* Country name.
*/
private String name;
private SMSActivateCountry() {
}
/**
* Returns the country name.
*
* @return country name.
*/
@NotNull
public String getName() {
return name;
}
/**
* Returns the country id.
*
* @return country id.
*/
public int getId() {
return id;
}
@Override
public String toString() {
return "SMSActivateCountry{" +
"id=" + id +
", name='" + name + '\'' +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy