Files
acs-public-rest-api/src/gen/java/com/inteligr8/alfresco/acs/model/CommentEntry.java
2021-08-28 01:04:38 -04:00

52 lines
1.1 KiB
Java

package com.inteligr8.alfresco.acs.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.annotations.ApiModelProperty;
@com.fasterxml.jackson.annotation.JsonIgnoreProperties(ignoreUnknown = true)
public class CommentEntry {
@ApiModelProperty(required = true, value = "")
private Comment entry = null;
/**
* Get entry
* @return entry
**/
@JsonProperty("entry")
public Comment getEntry() {
return entry;
}
public void setEntry(Comment entry) {
this.entry = entry;
}
public CommentEntry entry(Comment entry) {
this.entry = entry;
return this;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CommentEntry {\n");
sb.append(" entry: ").append(toIndentedString(entry)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private static String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}