All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.volcengine.dns.model.ListCustomLinesRequest Maven / Gradle / Ivy

There is a newer version: 0.1.144
Show newest version
/*
 * dns
 * 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.dns.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;
/**
 * ListCustomLinesRequest
 */



public class ListCustomLinesRequest {
  @SerializedName("IPSegment")
  private String ipSegment = null;

  @SerializedName("Line")
  private String line = null;

  @SerializedName("NameCN")
  private String nameCN = null;

  @SerializedName("PageNumber")
  private Integer pageNumber = null;

  @SerializedName("PageSize")
  private Integer pageSize = null;

  @SerializedName("Remark")
  private String remark = null;

  public ListCustomLinesRequest ipSegment(String ipSegment) {
    this.ipSegment = ipSegment;
    return this;
  }

   /**
   * Get ipSegment
   * @return ipSegment
  **/
  @Schema(description = "")
  public String getIpSegment() {
    return ipSegment;
  }

  public void setIpSegment(String ipSegment) {
    this.ipSegment = ipSegment;
  }

  public ListCustomLinesRequest line(String line) {
    this.line = line;
    return this;
  }

   /**
   * Get line
   * @return line
  **/
  @Schema(description = "")
  public String getLine() {
    return line;
  }

  public void setLine(String line) {
    this.line = line;
  }

  public ListCustomLinesRequest nameCN(String nameCN) {
    this.nameCN = nameCN;
    return this;
  }

   /**
   * Get nameCN
   * @return nameCN
  **/
  @Schema(description = "")
  public String getNameCN() {
    return nameCN;
  }

  public void setNameCN(String nameCN) {
    this.nameCN = nameCN;
  }

  public ListCustomLinesRequest pageNumber(Integer pageNumber) {
    this.pageNumber = pageNumber;
    return this;
  }

   /**
   * Get pageNumber
   * @return pageNumber
  **/
  @Schema(description = "")
  public Integer getPageNumber() {
    return pageNumber;
  }

  public void setPageNumber(Integer pageNumber) {
    this.pageNumber = pageNumber;
  }

  public ListCustomLinesRequest 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 ListCustomLinesRequest remark(String remark) {
    this.remark = remark;
    return this;
  }

   /**
   * Get remark
   * @return remark
  **/
  @Schema(description = "")
  public String getRemark() {
    return remark;
  }

  public void setRemark(String remark) {
    this.remark = remark;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    ListCustomLinesRequest listCustomLinesRequest = (ListCustomLinesRequest) o;
    return Objects.equals(this.ipSegment, listCustomLinesRequest.ipSegment) &&
        Objects.equals(this.line, listCustomLinesRequest.line) &&
        Objects.equals(this.nameCN, listCustomLinesRequest.nameCN) &&
        Objects.equals(this.pageNumber, listCustomLinesRequest.pageNumber) &&
        Objects.equals(this.pageSize, listCustomLinesRequest.pageSize) &&
        Objects.equals(this.remark, listCustomLinesRequest.remark);
  }

  @Override
  public int hashCode() {
    return Objects.hash(ipSegment, line, nameCN, pageNumber, pageSize, remark);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class ListCustomLinesRequest {\n");
    
    sb.append("    ipSegment: ").append(toIndentedString(ipSegment)).append("\n");
    sb.append("    line: ").append(toIndentedString(line)).append("\n");
    sb.append("    nameCN: ").append(toIndentedString(nameCN)).append("\n");
    sb.append("    pageNumber: ").append(toIndentedString(pageNumber)).append("\n");
    sb.append("    pageSize: ").append(toIndentedString(pageSize)).append("\n");
    sb.append("    remark: ").append(toIndentedString(remark)).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