gen.org.tkit.apm.model.InputPartHeaders Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tkit-quarkus-portal-mvc Show documentation
Show all versions of tkit-quarkus-portal-mvc Show documentation
1000kit mvc library for the Quarkus framework
package gen.org.tkit.apm.model;
import javax.json.bind.annotation.JsonbProperty;
import javax.validation.Valid;
import javax.validation.constraints.*;
import lombok.Data;
@Data
@lombok.ToString
@io.quarkus.runtime.annotations.RegisterForReflection
public class InputPartHeaders {
@JsonbProperty("empty")
public @Valid Boolean empty = null;
}