com.volcengine.waf.model.ListIpGroupRequest 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;
/**
* ListIpGroupRequest
*/
public class ListIpGroupRequest {
@SerializedName("Ip")
private String ip = null;
@SerializedName("IpGroupId")
private Integer ipGroupId = null;
@SerializedName("ListAll")
private String listAll = null;
@SerializedName("Page")
private Integer page = null;
@SerializedName("PageSize")
private Integer pageSize = null;
@SerializedName("ProjectName")
private String projectName = null;
public ListIpGroupRequest ip(String ip) {
this.ip = ip;
return this;
}
/**
* Get ip
* @return ip
**/
@Schema(description = "")
public String getIp() {
return ip;
}
public void setIp(String ip) {
this.ip = ip;
}
public ListIpGroupRequest ipGroupId(Integer ipGroupId) {
this.ipGroupId = ipGroupId;
return this;
}
/**
* Get ipGroupId
* @return ipGroupId
**/
@NotNull
@Schema(required = true, description = "")
public Integer getIpGroupId() {
return ipGroupId;
}
public void setIpGroupId(Integer ipGroupId) {
this.ipGroupId = ipGroupId;
}
public ListIpGroupRequest listAll(String listAll) {
this.listAll = listAll;
return this;
}
/**
* Get listAll
* @return listAll
**/
@Schema(description = "")
public String getListAll() {
return listAll;
}
public void setListAll(String listAll) {
this.listAll = listAll;
}
public ListIpGroupRequest page(Integer page) {
this.page = page;
return this;
}
/**
* Get page
* @return page
**/
@NotNull
@Schema(required = true, description = "")
public Integer getPage() {
return page;
}
public void setPage(Integer page) {
this.page = page;
}
public ListIpGroupRequest pageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* Get pageSize
* @return pageSize
**/
@NotNull
@Schema(required = true, description = "")
public Integer getPageSize() {
return pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public ListIpGroupRequest 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;
}
ListIpGroupRequest listIpGroupRequest = (ListIpGroupRequest) o;
return Objects.equals(this.ip, listIpGroupRequest.ip) &&
Objects.equals(this.ipGroupId, listIpGroupRequest.ipGroupId) &&
Objects.equals(this.listAll, listIpGroupRequest.listAll) &&
Objects.equals(this.page, listIpGroupRequest.page) &&
Objects.equals(this.pageSize, listIpGroupRequest.pageSize) &&
Objects.equals(this.projectName, listIpGroupRequest.projectName);
}
@Override
public int hashCode() {
return Objects.hash(ip, ipGroupId, listAll, page, pageSize, projectName);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ListIpGroupRequest {\n");
sb.append(" ip: ").append(toIndentedString(ip)).append("\n");
sb.append(" ipGroupId: ").append(toIndentedString(ipGroupId)).append("\n");
sb.append(" listAll: ").append(toIndentedString(listAll)).append("\n");
sb.append(" page: ").append(toIndentedString(page)).append("\n");
sb.append(" pageSize: ").append(toIndentedString(pageSize)).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