![JAR search and dependency download from the Maven repository](/logo.png)
com.tinypass.client.publisher.model.ActionDTO 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 com.tinypass.client.publisher.model.ActionStepDTO;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.Date;
public class ActionDTO {
/* The action id */
private String actionId = null;
/* Action type */
private String type = null;
/* Number of handled/handling items */
private Integer numberOfItems = null;
/* Action status */
private String status = null;
/* Schedule time */
private Integer scheduleTime = null;
/* Change subscription term step */
private ActionStepDTO changeSubscriptionTermStep = null;
/* Upgrade subscription step */
private ActionStepDTO upgradeSubscriptionStep = null;
/* Action readonly */
private Boolean readonly = null;
/* Send email step */
private ActionStepDTO sendEmailStep = null;
/* Progress */
private Integer progress = null;
public String getActionId() {
return actionId;
}
public void setActionId(String actionId) {
this.actionId = actionId;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public Integer getNumberOfItems() {
return numberOfItems;
}
public void setNumberOfItems(Integer numberOfItems) {
this.numberOfItems = numberOfItems;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public Integer getScheduleTime() {
return scheduleTime;
}
public void setScheduleTime(Integer scheduleTime) {
this.scheduleTime = scheduleTime;
}
public ActionStepDTO getChangeSubscriptionTermStep() {
return changeSubscriptionTermStep;
}
public void setChangeSubscriptionTermStep(ActionStepDTO changeSubscriptionTermStep) {
this.changeSubscriptionTermStep = changeSubscriptionTermStep;
}
public ActionStepDTO getUpgradeSubscriptionStep() {
return upgradeSubscriptionStep;
}
public void setUpgradeSubscriptionStep(ActionStepDTO upgradeSubscriptionStep) {
this.upgradeSubscriptionStep = upgradeSubscriptionStep;
}
public Boolean getReadonly() {
return readonly;
}
public void setReadonly(Boolean readonly) {
this.readonly = readonly;
}
public ActionStepDTO getSendEmailStep() {
return sendEmailStep;
}
public void setSendEmailStep(ActionStepDTO sendEmailStep) {
this.sendEmailStep = sendEmailStep;
}
public Integer getProgress() {
return progress;
}
public void setProgress(Integer progress) {
this.progress = progress;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ActionDTO {\n");
sb.append(" actionId: ").append(actionId).append("\n");
sb.append(" type: ").append(type).append("\n");
sb.append(" numberOfItems: ").append(numberOfItems).append("\n");
sb.append(" status: ").append(status).append("\n");
sb.append(" scheduleTime: ").append(scheduleTime).append("\n");
sb.append(" changeSubscriptionTermStep: ").append(changeSubscriptionTermStep).append("\n");
sb.append(" upgradeSubscriptionStep: ").append(upgradeSubscriptionStep).append("\n");
sb.append(" readonly: ").append(readonly).append("\n");
sb.append(" sendEmailStep: ").append(sendEmailStep).append("\n");
sb.append(" progress: ").append(progress).append("\n");
sb.append("}\n");
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy