com.fitbur.github.dockerjava.api.model.SearchItem Maven / Gradle / Ivy
package com.fitbur.github.dockerjava.api.model;
import com.fitbur.apache.com.fitburmons.lang.builder.ToStringBuilder;
import com.fitbur.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fitbur.fasterxml.jackson.annotation.JsonProperty;
/**
*
* @author Konstantin Pelykh ([email protected])
*
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class SearchItem {
@JsonProperty("star_count")
private int starCount;
@JsonProperty("is_official")
private boolean isOfficial;
@JsonProperty("is_trusted")
private boolean isTrusted;
@JsonProperty("name")
private String name;
@JsonProperty("com.fitburscription")
private String com.fitburscription;
public int getStarCount() {
return starCount;
}
public boolean isOfficial() {
return isOfficial;
}
public boolean isTrusted() {
return isTrusted;
}
public String getName() {
return name;
}
public String getDescription() {
return com.fitburscription;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy