com.tinypass.client.publisher.model.ExperienceVersion 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;
import java.util.Date;
public class ExperienceVersion {
/* Experience identifier */
private String experienceId = null;
/* The version */
private Integer version = null;
/* Whether the experience is committed */
private Boolean committed = null;
/* commited date */
private Integer committedDate = null;
/* Experience revision notes */
private String revisionNotes = null;
public String getExperienceId() {
return experienceId;
}
public void setExperienceId(String experienceId) {
this.experienceId = experienceId;
}
public Integer getVersion() {
return version;
}
public void setVersion(Integer version) {
this.version = version;
}
public Boolean getCommitted() {
return committed;
}
public void setCommitted(Boolean committed) {
this.committed = committed;
}
public Integer getCommittedDate() {
return committedDate;
}
public void setCommittedDate(Integer committedDate) {
this.committedDate = committedDate;
}
public String getRevisionNotes() {
return revisionNotes;
}
public void setRevisionNotes(String revisionNotes) {
this.revisionNotes = revisionNotes;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ExperienceVersion {\n");
sb.append(" experienceId: ").append(experienceId).append("\n");
sb.append(" version: ").append(version).append("\n");
sb.append(" committed: ").append(committed).append("\n");
sb.append(" committedDate: ").append(committedDate).append("\n");
sb.append(" revisionNotes: ").append(revisionNotes).append("\n");
sb.append("}\n");
return sb.toString();
}
}