
io.fabric8.docker.api.model.ImageHistory Maven / Gradle / Ivy
package io.fabric8.docker.api.model;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.annotation.Generated;
import javax.validation.Valid;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import io.fabric8.docker.api.model.Doneable;
import io.sundr.builder.annotations.Buildable;
import io.sundr.builder.annotations.Inline;
import lombok.EqualsAndHashCode;
import lombok.ToString;
/**
*
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
"Comment",
"Created",
"CreatedBy",
"Id",
"Size",
"Tags"
})
@JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
@ToString
@EqualsAndHashCode
@Buildable(editableEnabled = true, validationEnabled = true, generateBuilderPackage = true, builderPackage = "io.fabric8.docker.api.builder", inline = {
@Inline(type = Doneable.class, prefix = "Doneable", value = "done")
})
public class ImageHistory implements Serializable
{
/**
*
*
*/
@JsonProperty("Comment")
private String Comment;
/**
*
*
*/
@JsonProperty("Created")
private Long Created;
/**
*
*
*/
@JsonProperty("CreatedBy")
private String CreatedBy;
/**
*
*
*/
@JsonProperty("Id")
private String Id;
/**
*
*
*/
@JsonProperty("Size")
private Long Size;
/**
*
*
*/
@JsonProperty("Tags")
@Valid
private List Tags = new ArrayList();
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
* No args constructor for use in serialization
*
*/
public ImageHistory() {
}
/**
*
* @param Comment
* @param CreatedBy
* @param Size
* @param Id
* @param Tags
* @param Created
*/
public ImageHistory(String Comment, Long Created, String CreatedBy, String Id, Long Size, List Tags) {
this.Comment = Comment;
this.Created = Created;
this.CreatedBy = CreatedBy;
this.Id = Id;
this.Size = Size;
this.Tags = Tags;
}
/**
*
*
* @return
* The Comment
*/
@JsonProperty("Comment")
public String getComment() {
return Comment;
}
/**
*
*
* @param Comment
* The Comment
*/
@JsonProperty("Comment")
public void setComment(String Comment) {
this.Comment = Comment;
}
/**
*
*
* @return
* The Created
*/
@JsonProperty("Created")
public Long getCreated() {
return Created;
}
/**
*
*
* @param Created
* The Created
*/
@JsonProperty("Created")
public void setCreated(Long Created) {
this.Created = Created;
}
/**
*
*
* @return
* The CreatedBy
*/
@JsonProperty("CreatedBy")
public String getCreatedBy() {
return CreatedBy;
}
/**
*
*
* @param CreatedBy
* The CreatedBy
*/
@JsonProperty("CreatedBy")
public void setCreatedBy(String CreatedBy) {
this.CreatedBy = CreatedBy;
}
/**
*
*
* @return
* The Id
*/
@JsonProperty("Id")
public String getId() {
return Id;
}
/**
*
*
* @param Id
* The Id
*/
@JsonProperty("Id")
public void setId(String Id) {
this.Id = Id;
}
/**
*
*
* @return
* The Size
*/
@JsonProperty("Size")
public Long getSize() {
return Size;
}
/**
*
*
* @param Size
* The Size
*/
@JsonProperty("Size")
public void setSize(Long Size) {
this.Size = Size;
}
/**
*
*
* @return
* The Tags
*/
@JsonProperty("Tags")
public List getTags() {
return Tags;
}
/**
*
*
* @param Tags
* The Tags
*/
@JsonProperty("Tags")
public void setTags(List Tags) {
this.Tags = Tags;
}
@JsonAnyGetter
public Map getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy