com.g42cloud.sdk.er.v3.model.PropagationRequestBody Maven / Gradle / Ivy
The newest version!
package com.g42cloud.sdk.er.v3.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Objects;
import java.util.function.Consumer;
/**
* PropagationRequestBody
*/
public class PropagationRequestBody {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "attachment_id")
private String attachmentId;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "route_policy")
private ImportRoutePolicy routePolicy;
public PropagationRequestBody withAttachmentId(String attachmentId) {
this.attachmentId = attachmentId;
return this;
}
public String getAttachmentId() {
return attachmentId;
}
public void setAttachmentId(String attachmentId) {
this.attachmentId = attachmentId;
}
public PropagationRequestBody withRoutePolicy(ImportRoutePolicy routePolicy) {
this.routePolicy = routePolicy;
return this;
}
public PropagationRequestBody withRoutePolicy(Consumer routePolicySetter) {
if (this.routePolicy == null) {
this.routePolicy = new ImportRoutePolicy();
routePolicySetter.accept(this.routePolicy);
}
return this;
}
public ImportRoutePolicy getRoutePolicy() {
return routePolicy;
}
public void setRoutePolicy(ImportRoutePolicy routePolicy) {
this.routePolicy = routePolicy;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
PropagationRequestBody that = (PropagationRequestBody) obj;
return Objects.equals(this.attachmentId, that.attachmentId)
&& Objects.equals(this.routePolicy, that.routePolicy);
}
@Override
public int hashCode() {
return Objects.hash(attachmentId, routePolicy);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PropagationRequestBody {\n");
sb.append(" attachmentId: ").append(toIndentedString(attachmentId)).append("\n");
sb.append(" routePolicy: ").append(toIndentedString(routePolicy)).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 ");
}
}