com.tinypass.client.anon.model.BillingPlanTranslationRequest Maven / Gradle / Ivy
package com.tinypass.client.anon.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 BillingPlanTranslationRequest {
/* The billing plan of the subscription */
private String billingPlan = null;
/* The date of the last payment for the subscription */
private Integer subscriptionLastPayment = null;
/* The start date. */
private Integer startDate = null;
/* The end date */
private Integer endDate = null;
/* The public ID of the term */
private String termPubId = null;
public String getBillingPlan() {
return billingPlan;
}
public void setBillingPlan(String billingPlan) {
this.billingPlan = billingPlan;
}
public Integer getSubscriptionLastPayment() {
return subscriptionLastPayment;
}
public void setSubscriptionLastPayment(Integer subscriptionLastPayment) {
this.subscriptionLastPayment = subscriptionLastPayment;
}
public Integer getStartDate() {
return startDate;
}
public void setStartDate(Integer startDate) {
this.startDate = startDate;
}
public Integer getEndDate() {
return endDate;
}
public void setEndDate(Integer endDate) {
this.endDate = endDate;
}
public String getTermPubId() {
return termPubId;
}
public void setTermPubId(String termPubId) {
this.termPubId = termPubId;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BillingPlanTranslationRequest {\n");
sb.append(" billingPlan: ").append(billingPlan).append("\n");
sb.append(" subscriptionLastPayment: ").append(subscriptionLastPayment).append("\n");
sb.append(" startDate: ").append(startDate).append("\n");
sb.append(" endDate: ").append(endDate).append("\n");
sb.append(" termPubId: ").append(termPubId).append("\n");
sb.append("}\n");
return sb.toString();
}
}