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

com.manywho.sdk.client.entities.FlowInput Maven / Gradle / Ivy

There is a newer version: 2.0.1
Show newest version
package com.manywho.sdk.client.entities;

import com.manywho.sdk.entities.run.elements.type.ObjectCollection;
import com.manywho.sdk.enums.ContentType;

public class FlowInput {
    private String name;
    private ContentType contentType;
    private String contentValue;
    private ObjectCollection objectData;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public ContentType getContentType() {
        return contentType;
    }

    public void setContentType(ContentType contentType) {
        this.contentType = contentType;
    }

    public String getContentValue() {
        return contentValue;
    }

    public void setContentValue(String contentValue) {
        this.contentValue = contentValue;
    }

    public ObjectCollection getObjectData() {
        return objectData;
    }

    public boolean hasObjectData() {
        return objectData != null;
    }

    public void setObjectData(ObjectCollection objectData) {
        this.objectData = objectData;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy