All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.manywho.sdk.api.draw.flow.FlowResponse Maven / Gradle / Ivy

There is a newer version: 2.0.1
Show 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.LocalDateTime;

public class FlowResponse extends FlowRequest {
    private LocalDateTime dateCreated;
    private LocalDateTime 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 LocalDateTime getDateCreated() {
        return dateCreated;
    }

    public void setDateCreated(LocalDateTime dateCreated) {
        this.dateCreated = dateCreated;
    }

    public LocalDateTime getDateModified() {
        return dateModified;
    }

    public void setDateModified(LocalDateTime 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 - 2024 Weber Informatics LLC | Privacy Policy