io.convergence_platform.common.dto.RequestValidationFailureDTO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of service-lib Show documentation
Show all versions of service-lib Show documentation
Holds the common functionality needed by all Convergence Platform-based services written in Java.
The newest version!
package io.convergence_platform.common.dto;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.convergence_platform.common.responses.IApiResponseBody;
import java.util.ArrayList;
import java.util.List;
public class RequestValidationFailureDTO implements IApiResponseBody {
@JsonProperty("errors")
public List errors = new ArrayList<>();
@Override
public String getResponseBodyType() {
return "request_error_info";
}
}