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

com.cleeng.api.domain.CaptureQuestion Maven / Gradle / Ivy

package com.cleeng.api.domain;

import java.io.Serializable;

public class CaptureQuestion implements Serializable {

    public String key;
    public boolean enabled;
    public boolean required;

    public CaptureQuestion(String key, boolean enabled, boolean required) {
        this.key = key;
        this.enabled = enabled;
        this.required = required;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy