All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ru.sms_activate.response.api_rent.extra.SMSActivateRentActivation Maven / Gradle / Ivy

There is a newer version: 1.5.9
Show newest version
package ru.sms_activate.response.api_rent.extra;

import org.jetbrains.annotations.NotNull;

public class SMSActivateRentActivation {
  /**
   * Id rent.
   */
  private int id;

  /**
   * Phone number.
   */
  private long number;

  /**
   * End date of rent.
   */
  private String endDate;

  private SMSActivateRentActivation() {
  }

  /**
   * Returns the id rent.
   *
   * @return id rent.
   */
  public int getId() {
    return id;
  }

  /**
   * Returns the phone number.
   *
   * @return phone number
   */
  public long getNumber() {
    return number;
  }

  /**
   * Returns the end date of rent.
   *
   * @return end date of rent.
   */
  @NotNull
  public String getEndDate() {
    return endDate;
  }

  @Override
  public String toString() {
    return "SMSActivateGetRentNumber{" +
      "id=" + id +
      ", number=" + number +
      ", endDate='" + endDate + '\'' +
      '}';
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy