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

io.castled.schema.ParameterFieldDTO Maven / Gradle / Ivy

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

import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;

@Getter
@Setter
@NoArgsConstructor
public class ParameterFieldDTO extends SchemaFieldDTO {
    private String title;
    private String description;


    public ParameterFieldDTO(String title, String description, String fieldName, String fieldDisplayName, String type, boolean optional) {
        super(fieldName, fieldDisplayName, type, optional);
        this.title = title;
        this.description = description;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy