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

io.apicurio.registry.rest.v3.beans.Comment Maven / Gradle / Ivy

The newest version!

package io.apicurio.registry.rest.v3.beans;

import java.util.Date;
import javax.annotation.processing.Generated;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;


/**
 * Root Type for NewComment
 * 

* * */ @JsonInclude(JsonInclude.Include.NON_NULL) @JsonPropertyOrder({ "value", "createdOn", "owner", "commentId" }) @Generated("jsonschema2pojo") @io.quarkus.runtime.annotations.RegisterForReflection @lombok.experimental.SuperBuilder @lombok.AllArgsConstructor @lombok.NoArgsConstructor @lombok.EqualsAndHashCode @lombok.ToString(callSuper = true) public class Comment { /** * * (Required) * */ @JsonProperty("value") private String value; /** * * (Required) * */ @JsonProperty("createdOn") private Date createdOn; /** * * (Required) * */ @JsonProperty("owner") @JsonPropertyDescription("") private String owner; /** * * (Required) * */ @JsonProperty("commentId") @JsonPropertyDescription("") private String commentId; /** * * (Required) * */ @JsonProperty("value") public String getValue() { return value; } /** * * (Required) * */ @JsonProperty("value") public void setValue(String value) { this.value = value; } /** * * (Required) * */ @JsonProperty("createdOn") public Date getCreatedOn() { return createdOn; } /** * * (Required) * */ @JsonProperty("createdOn") public void setCreatedOn(Date createdOn) { this.createdOn = createdOn; } /** * * (Required) * */ @JsonProperty("owner") public String getOwner() { return owner; } /** * * (Required) * */ @JsonProperty("owner") public void setOwner(String owner) { this.owner = owner; } /** * * (Required) * */ @JsonProperty("commentId") public String getCommentId() { return commentId; } /** * * (Required) * */ @JsonProperty("commentId") public void setCommentId(String commentId) { this.commentId = commentId; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy