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

com.tinypass.client.publisher.model.ReallocationBatch Maven / Gradle / Ivy

There is a newer version: 16.331.0
Show newest version
package com.tinypass.client.publisher.model;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.Date;

public class ReallocationBatch {

    private Integer subscribersCount = null;
  

    private Date accessEndDate = null;
  

    private Date renewalDate = null;
  


  public Integer getSubscribersCount() {
    return subscribersCount;
  }
  public void setSubscribersCount(Integer subscribersCount) {
    this.subscribersCount = subscribersCount;
  }


  public Date getAccessEndDate() {
    return accessEndDate;
  }
  public void setAccessEndDate(Date accessEndDate) {
    this.accessEndDate = accessEndDate;
  }


  public Date getRenewalDate() {
    return renewalDate;
  }
  public void setRenewalDate(Date renewalDate) {
    this.renewalDate = renewalDate;
  }


  @Override
  public String toString()  {
    StringBuilder sb = new StringBuilder();
    sb.append("class ReallocationBatch {\n");
    sb.append("  subscribersCount: ").append(subscribersCount).append("\n");
    sb.append("  accessEndDate: ").append(accessEndDate).append("\n");
    sb.append("  renewalDate: ").append(renewalDate).append("\n");
    sb.append("}\n");
    return sb.toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy