com.g42cloud.sdk.er.v3.model.ListRouteTablesResponse 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 com.g42cloud.sdk.core.SdkResponse;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import java.util.function.Consumer;
/**
* Response Object
*/
public class ListRouteTablesResponse extends SdkResponse {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "route_tables")
private List routeTables = null;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "request_id")
private String requestId;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "page_info")
private PageInfo pageInfo;
public ListRouteTablesResponse withRouteTables(List routeTables) {
this.routeTables = routeTables;
return this;
}
public ListRouteTablesResponse addRouteTablesItem(RouteTable routeTablesItem) {
if (this.routeTables == null) {
this.routeTables = new ArrayList<>();
}
this.routeTables.add(routeTablesItem);
return this;
}
public ListRouteTablesResponse withRouteTables(Consumer> routeTablesSetter) {
if (this.routeTables == null) {
this.routeTables = new ArrayList<>();
}
routeTablesSetter.accept(this.routeTables);
return this;
}
public List getRouteTables() {
return routeTables;
}
public void setRouteTables(List routeTables) {
this.routeTables = routeTables;
}
public ListRouteTablesResponse withRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public ListRouteTablesResponse withPageInfo(PageInfo pageInfo) {
this.pageInfo = pageInfo;
return this;
}
public ListRouteTablesResponse withPageInfo(Consumer pageInfoSetter) {
if (this.pageInfo == null) {
this.pageInfo = new PageInfo();
pageInfoSetter.accept(this.pageInfo);
}
return this;
}
public PageInfo getPageInfo() {
return pageInfo;
}
public void setPageInfo(PageInfo pageInfo) {
this.pageInfo = pageInfo;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
ListRouteTablesResponse that = (ListRouteTablesResponse) obj;
return Objects.equals(this.routeTables, that.routeTables) && Objects.equals(this.requestId, that.requestId)
&& Objects.equals(this.pageInfo, that.pageInfo);
}
@Override
public int hashCode() {
return Objects.hash(routeTables, requestId, pageInfo);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ListRouteTablesResponse {\n");
sb.append(" routeTables: ").append(toIndentedString(routeTables)).append("\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n");
sb.append(" pageInfo: ").append(toIndentedString(pageInfo)).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 ");
}
}