nl.vpro.nep.domain.NEPItemizeResponse 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.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* @since 5.5
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
@lombok.Builder
public class NEPItemizeResponse {
private Boolean success;
private String id;
private String output_filename;
public boolean isSuccess() {
return success != null && success;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy