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

io.castled.dtos.querymodel.ModelInputDTO Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package io.castled.dtos.querymodel;

import io.castled.models.QueryModelPK;
import io.castled.models.QueryModelType;
import lombok.Data;

import javax.validation.constraints.NotNull;

@Data
public class ModelInputDTO {

    @NotNull
    private Long warehouseId;

    @NotNull
    private String name;

    private QueryModelType type;

    @NotNull
    private QueryModelDetails details;

    @NotNull
    private QueryModelPK queryPK;

    private boolean demo;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy