
com.manywho.sdk.api.draw.flow.FlowResponse Maven / Gradle / Ivy
The newest version!
package com.manywho.sdk.api.draw.flow;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.manywho.sdk.api.security.BuilderWho;
import java.time.OffsetDateTime;
public class FlowResponse extends FlowRequest {
private OffsetDateTime dateCreated;
private OffsetDateTime dateModified;
private BuilderWho whoCreated;
private BuilderWho whoModified;
private BuilderWho whoOwner;
private String alertEmail;
@JsonProperty("isActive")
private boolean active;
@JsonProperty("isDefault")
private boolean isDefault;
private String comment;
public OffsetDateTime getDateCreated() {
return dateCreated;
}
public void setDateCreated(OffsetDateTime dateCreated) {
this.dateCreated = dateCreated;
}
public OffsetDateTime getDateModified() {
return dateModified;
}
public void setDateModified(OffsetDateTime dateModified) {
this.dateModified = dateModified;
}
public BuilderWho getWhoCreated() {
return whoCreated;
}
public void setWhoCreated(BuilderWho whoCreated) {
this.whoCreated = whoCreated;
}
public BuilderWho getWhoModified() {
return whoModified;
}
public void setWhoModified(BuilderWho whoModified) {
this.whoModified = whoModified;
}
public BuilderWho getWhoOwner() {
return whoOwner;
}
public void setWhoOwner(BuilderWho whoOwner) {
this.whoOwner = whoOwner;
}
public String getAlertEmail() {
return alertEmail;
}
public void setAlertEmail(String alertEmail) {
this.alertEmail = alertEmail;
}
public boolean isActive() {
return active;
}
public void setActive(boolean active) {
this.active = active;
}
public boolean isDefault() {
return isDefault;
}
public void setDefault(boolean isDefault) {
this.isDefault = isDefault;
}
public String getComment() {
return comment;
}
public void setComment(String comment) {
this.comment = comment;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy