com.docusign.monitor.model.Aggregation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docusign-monitor-java Show documentation
Show all versions of docusign-monitor-java Show documentation
The official DocuSign Monitor Java client provides libraries for Java application integration with DocuSign Monitor for real estate and mortgage workflows. It is recommended that you use this version of the library for new development.
The newest version!
package com.docusign.monitor.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.v3.oas.annotations.media.Schema;
import java.util.Objects;
/** Aggregation */
public class Aggregation {
@JsonProperty("aggregationName")
private String aggregationName = null;
/**
* Get aggregationName
*
* @return aggregationName
*/
@Schema(description = "")
public String getAggregationName() {
return aggregationName;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Aggregation aggregation = (Aggregation) o;
return Objects.equals(this.aggregationName, aggregation.aggregationName);
}
@Override
public int hashCode() {
return Objects.hash(aggregationName);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Aggregation {\n");
sb.append(" aggregationName: ").append(toIndentedString(aggregationName)).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 String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}