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

com.volcengine.dns.model.CreateCustomLineRequest 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 java.util.ArrayList;
import java.util.List;
import javax.validation.constraints.*;
import javax.validation.Valid;
/**
 * CreateCustomLineRequest
 */



public class CreateCustomLineRequest {
  @SerializedName("IPSegments")
  private List ipSegments = null;

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

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

  public CreateCustomLineRequest ipSegments(List ipSegments) {
    this.ipSegments = ipSegments;
    return this;
  }

  public CreateCustomLineRequest addIpSegmentsItem(String ipSegmentsItem) {
    if (this.ipSegments == null) {
      this.ipSegments = new ArrayList();
    }
    this.ipSegments.add(ipSegmentsItem);
    return this;
  }

   /**
   * Get ipSegments
   * @return ipSegments
  **/
  @Schema(description = "")
  public List getIpSegments() {
    return ipSegments;
  }

  public void setIpSegments(List ipSegments) {
    this.ipSegments = ipSegments;
  }

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

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

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

  public CreateCustomLineRequest 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;
    }
    CreateCustomLineRequest createCustomLineRequest = (CreateCustomLineRequest) o;
    return Objects.equals(this.ipSegments, createCustomLineRequest.ipSegments) &&
        Objects.equals(this.nameCN, createCustomLineRequest.nameCN) &&
        Objects.equals(this.remark, createCustomLineRequest.remark);
  }

  @Override
  public int hashCode() {
    return Objects.hash(ipSegments, nameCN, remark);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class CreateCustomLineRequest {\n");
    
    sb.append("    ipSegments: ").append(toIndentedString(ipSegments)).append("\n");
    sb.append("    nameCN: ").append(toIndentedString(nameCN)).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