All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.hawt.log.rest.LogResponse Maven / Gradle / Ivy

There is a newer version: 4.2.0
Show newest version
package io.hawt.log.rest;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;

@JsonIgnoreProperties(ignoreUnknown = true)
public class LogResponse {
    private LogResponseHits hits;

    @JsonCreator
    public LogResponse(@JsonProperty("hits") LogResponseHits hits) {
        this.hits = hits;
    }

    public LogResponseHits getHits() {
        return hits;
    }

    public void setHits(LogResponseHits hits) {
        this.hits = hits;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy