
ru.sms_activate.response.api_rent.extra.SMSActivateRentNumber 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.api_rent.extra;
public class SMSActivateRentNumber {
/**
* Id rent.
*/
private int id;
/**
* Phone number.
*/
private long phone;
private SMSActivateRentNumber() {
}
/**
* Returns the id rent.
*
* @return id rent.
*/
public int getId() {
return id;
}
/**
* Phone number.
*
* @return phone number.
*/
public long getNumber() {
return phone;
}
@Override
public String toString() {
return "SMSActivateRentNumber{" +
"id=" + id +
", phone=" + phone +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy