com.volcengine.waf.model.ListBotAnalyseProtectRulePriorityAvailableRequest Maven / Gradle / Ivy
/*
* 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 io.swagger.v3.oas.annotations.media.Schema;
import java.io.IOException;
import javax.validation.constraints.*;
import javax.validation.Valid;
/**
* ListBotAnalyseProtectRulePriorityAvailableRequest
*/
public class ListBotAnalyseProtectRulePriorityAvailableRequest {
@SerializedName("BotSpace")
private String botSpace = null;
@SerializedName("Host")
private String host = null;
@SerializedName("Page")
private Integer page = null;
@SerializedName("PageSize")
private Integer pageSize = null;
@SerializedName("Path")
private String path = null;
@SerializedName("ProjectName")
private String projectName = null;
public ListBotAnalyseProtectRulePriorityAvailableRequest botSpace(String botSpace) {
this.botSpace = botSpace;
return this;
}
/**
* Get botSpace
* @return botSpace
**/
@NotNull
@Schema(required = true, description = "")
public String getBotSpace() {
return botSpace;
}
public void setBotSpace(String botSpace) {
this.botSpace = botSpace;
}
public ListBotAnalyseProtectRulePriorityAvailableRequest host(String host) {
this.host = host;
return this;
}
/**
* Get host
* @return host
**/
@NotNull
@Schema(required = true, description = "")
public String getHost() {
return host;
}
public void setHost(String host) {
this.host = host;
}
public ListBotAnalyseProtectRulePriorityAvailableRequest page(Integer page) {
this.page = page;
return this;
}
/**
* Get page
* @return page
**/
@Schema(description = "")
public Integer getPage() {
return page;
}
public void setPage(Integer page) {
this.page = page;
}
public ListBotAnalyseProtectRulePriorityAvailableRequest pageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* Get pageSize
* @return pageSize
**/
@Schema(description = "")
public Integer getPageSize() {
return pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public ListBotAnalyseProtectRulePriorityAvailableRequest path(String path) {
this.path = path;
return this;
}
/**
* Get path
* @return path
**/
@NotNull
@Schema(required = true, description = "")
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
public ListBotAnalyseProtectRulePriorityAvailableRequest projectName(String projectName) {
this.projectName = projectName;
return this;
}
/**
* Get projectName
* @return projectName
**/
@Schema(description = "")
public String getProjectName() {
return projectName;
}
public void setProjectName(String projectName) {
this.projectName = projectName;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ListBotAnalyseProtectRulePriorityAvailableRequest listBotAnalyseProtectRulePriorityAvailableRequest = (ListBotAnalyseProtectRulePriorityAvailableRequest) o;
return Objects.equals(this.botSpace, listBotAnalyseProtectRulePriorityAvailableRequest.botSpace) &&
Objects.equals(this.host, listBotAnalyseProtectRulePriorityAvailableRequest.host) &&
Objects.equals(this.page, listBotAnalyseProtectRulePriorityAvailableRequest.page) &&
Objects.equals(this.pageSize, listBotAnalyseProtectRulePriorityAvailableRequest.pageSize) &&
Objects.equals(this.path, listBotAnalyseProtectRulePriorityAvailableRequest.path) &&
Objects.equals(this.projectName, listBotAnalyseProtectRulePriorityAvailableRequest.projectName);
}
@Override
public int hashCode() {
return Objects.hash(botSpace, host, page, pageSize, path, projectName);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ListBotAnalyseProtectRulePriorityAvailableRequest {\n");
sb.append(" botSpace: ").append(toIndentedString(botSpace)).append("\n");
sb.append(" host: ").append(toIndentedString(host)).append("\n");
sb.append(" page: ").append(toIndentedString(page)).append("\n");
sb.append(" pageSize: ").append(toIndentedString(pageSize)).append("\n");
sb.append(" path: ").append(toIndentedString(path)).append("\n");
sb.append(" projectName: ").append(toIndentedString(projectName)).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 ");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy