gen.org.tkit.apm.model.InputPart 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 InputPart {
@JsonbProperty("headers")
public @Valid InputPartHeaders headers = null;
@JsonbProperty("contentTypeFromMessage")
public @Valid Boolean contentTypeFromMessage = null;
@JsonbProperty("mediaType")
public @Valid InputPartMediaType mediaType = null;
@JsonbProperty("bodyAsString")
public @Valid String bodyAsString = null;
}