com.volcengine.waf.model.BackendGroupForListDomainOutput Maven / Gradle / Ivy
The newest version!
/*
* waf
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: common-version
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package com.volcengine.waf.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import com.volcengine.waf.model.BackendForListDomainOutput;
import io.swagger.v3.oas.annotations.media.Schema;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import javax.validation.constraints.*;
import javax.validation.Valid;
/**
* BackendGroupForListDomainOutput
*/
public class BackendGroupForListDomainOutput {
@SerializedName("AccessPort")
private List accessPort = null;
@SerializedName("Backends")
private List backends = null;
@SerializedName("Name")
private String name = null;
public BackendGroupForListDomainOutput accessPort(List accessPort) {
this.accessPort = accessPort;
return this;
}
public BackendGroupForListDomainOutput addAccessPortItem(Integer accessPortItem) {
if (this.accessPort == null) {
this.accessPort = new ArrayList();
}
this.accessPort.add(accessPortItem);
return this;
}
/**
* Get accessPort
* @return accessPort
**/
@Schema(description = "")
public List getAccessPort() {
return accessPort;
}
public void setAccessPort(List accessPort) {
this.accessPort = accessPort;
}
public BackendGroupForListDomainOutput backends(List backends) {
this.backends = backends;
return this;
}
public BackendGroupForListDomainOutput addBackendsItem(BackendForListDomainOutput backendsItem) {
if (this.backends == null) {
this.backends = new ArrayList();
}
this.backends.add(backendsItem);
return this;
}
/**
* Get backends
* @return backends
**/
@Valid
@Schema(description = "")
public List getBackends() {
return backends;
}
public void setBackends(List backends) {
this.backends = backends;
}
public BackendGroupForListDomainOutput name(String name) {
this.name = name;
return this;
}
/**
* Get name
* @return name
**/
@Schema(description = "")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
BackendGroupForListDomainOutput backendGroupForListDomainOutput = (BackendGroupForListDomainOutput) o;
return Objects.equals(this.accessPort, backendGroupForListDomainOutput.accessPort) &&
Objects.equals(this.backends, backendGroupForListDomainOutput.backends) &&
Objects.equals(this.name, backendGroupForListDomainOutput.name);
}
@Override
public int hashCode() {
return Objects.hash(accessPort, backends, name);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BackendGroupForListDomainOutput {\n");
sb.append(" accessPort: ").append(toIndentedString(accessPort)).append("\n");
sb.append(" backends: ").append(toIndentedString(backends)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).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 ");
}
}