nl.vpro.nep.domain.FailureResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of media-nep Show documentation
Show all versions of media-nep Show documentation
Support for the several APIs of NEP that POMS is integrating with
package nl.vpro.nep.domain;
import lombok.*;
import java.io.Serial;
import java.io.Serializable;
/**
* @author Michiel Meeuwissen
* @since 5.25
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
@lombok.Builder
public class FailureResponse implements Serializable {
@Serial
private static final long serialVersionUID = -8133232400817291872L;
private boolean success;
private String status;
private String errors;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy