com.tinypass.client.publisher.model.UserAccessDto Maven / Gradle / Ivy
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;
public class UserAccessDto {
/* The subscription term name */
private String termName = null;
/* The billing plan for the term */
private String paymentBillingPlan = null;
/* The billing plan of the subscription */
private String billingPlan = null;
/* The billing plan for the term */
private String imageUrl = null;
/* The subscription resource name */
private String resourceName = null;
/* The type of the resource (0: Standard, 4: Bundle) */
private String type = null;
/* The resource type label (\"Standard\" or \"Bundle\") */
private String typeLabel = null;
/* The resource ID */
private String rid = null;
/* The term ID */
private String termId = null;
/* The creation date */
private String createDate = null;
/* The new expire date */
private String expireDate = null;
/* The status */
private String status = null;
/* The status localized */
private String statusLocalized = null;
/* The access ID */
private String accessId = null;
public String getTermName() {
return termName;
}
public void setTermName(String termName) {
this.termName = termName;
}
public String getPaymentBillingPlan() {
return paymentBillingPlan;
}
public void setPaymentBillingPlan(String paymentBillingPlan) {
this.paymentBillingPlan = paymentBillingPlan;
}
public String getBillingPlan() {
return billingPlan;
}
public void setBillingPlan(String billingPlan) {
this.billingPlan = billingPlan;
}
public String getImageUrl() {
return imageUrl;
}
public void setImageUrl(String imageUrl) {
this.imageUrl = imageUrl;
}
public String getResourceName() {
return resourceName;
}
public void setResourceName(String resourceName) {
this.resourceName = resourceName;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getTypeLabel() {
return typeLabel;
}
public void setTypeLabel(String typeLabel) {
this.typeLabel = typeLabel;
}
public String getRid() {
return rid;
}
public void setRid(String rid) {
this.rid = rid;
}
public String getTermId() {
return termId;
}
public void setTermId(String termId) {
this.termId = termId;
}
public String getCreateDate() {
return createDate;
}
public void setCreateDate(String createDate) {
this.createDate = createDate;
}
public String getExpireDate() {
return expireDate;
}
public void setExpireDate(String expireDate) {
this.expireDate = expireDate;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public String getStatusLocalized() {
return statusLocalized;
}
public void setStatusLocalized(String statusLocalized) {
this.statusLocalized = statusLocalized;
}
public String getAccessId() {
return accessId;
}
public void setAccessId(String accessId) {
this.accessId = accessId;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class UserAccessDto {\n");
sb.append(" termName: ").append(termName).append("\n");
sb.append(" paymentBillingPlan: ").append(paymentBillingPlan).append("\n");
sb.append(" billingPlan: ").append(billingPlan).append("\n");
sb.append(" imageUrl: ").append(imageUrl).append("\n");
sb.append(" resourceName: ").append(resourceName).append("\n");
sb.append(" type: ").append(type).append("\n");
sb.append(" typeLabel: ").append(typeLabel).append("\n");
sb.append(" rid: ").append(rid).append("\n");
sb.append(" termId: ").append(termId).append("\n");
sb.append(" createDate: ").append(createDate).append("\n");
sb.append(" expireDate: ").append(expireDate).append("\n");
sb.append(" status: ").append(status).append("\n");
sb.append(" statusLocalized: ").append(statusLocalized).append("\n");
sb.append(" accessId: ").append(accessId).append("\n");
sb.append("}\n");
return sb.toString();
}
}