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

com.volcengine.dcdn.model.TopURLForDescribeTopURLOutput Maven / Gradle / Ivy

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


public class TopURLForDescribeTopURLOutput {
  @SerializedName("Bandwidth")
  private Float bandwidth = null;

  @SerializedName("QPS")
  private Float QPS = null;

  @SerializedName("Rank")
  private Float rank = null;

  @SerializedName("Request")
  private Float request = null;

  @SerializedName("Traffic")
  private Float traffic = null;

  @SerializedName("URL")
  private String URL = null;

  public TopURLForDescribeTopURLOutput bandwidth(Float bandwidth) {
    this.bandwidth = bandwidth;
    return this;
  }

   /**
   * Get bandwidth
   * @return bandwidth
  **/
  @Schema(description = "")
  public Float getBandwidth() {
    return bandwidth;
  }

  public void setBandwidth(Float bandwidth) {
    this.bandwidth = bandwidth;
  }

  public TopURLForDescribeTopURLOutput QPS(Float QPS) {
    this.QPS = QPS;
    return this;
  }

   /**
   * Get QPS
   * @return QPS
  **/
  @Schema(description = "")
  public Float getQPS() {
    return QPS;
  }

  public void setQPS(Float QPS) {
    this.QPS = QPS;
  }

  public TopURLForDescribeTopURLOutput rank(Float rank) {
    this.rank = rank;
    return this;
  }

   /**
   * Get rank
   * @return rank
  **/
  @Schema(description = "")
  public Float getRank() {
    return rank;
  }

  public void setRank(Float rank) {
    this.rank = rank;
  }

  public TopURLForDescribeTopURLOutput request(Float request) {
    this.request = request;
    return this;
  }

   /**
   * Get request
   * @return request
  **/
  @Schema(description = "")
  public Float getRequest() {
    return request;
  }

  public void setRequest(Float request) {
    this.request = request;
  }

  public TopURLForDescribeTopURLOutput traffic(Float traffic) {
    this.traffic = traffic;
    return this;
  }

   /**
   * Get traffic
   * @return traffic
  **/
  @Schema(description = "")
  public Float getTraffic() {
    return traffic;
  }

  public void setTraffic(Float traffic) {
    this.traffic = traffic;
  }

  public TopURLForDescribeTopURLOutput URL(String URL) {
    this.URL = URL;
    return this;
  }

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

  public void setURL(String URL) {
    this.URL = URL;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    TopURLForDescribeTopURLOutput topURLForDescribeTopURLOutput = (TopURLForDescribeTopURLOutput) o;
    return Objects.equals(this.bandwidth, topURLForDescribeTopURLOutput.bandwidth) &&
        Objects.equals(this.QPS, topURLForDescribeTopURLOutput.QPS) &&
        Objects.equals(this.rank, topURLForDescribeTopURLOutput.rank) &&
        Objects.equals(this.request, topURLForDescribeTopURLOutput.request) &&
        Objects.equals(this.traffic, topURLForDescribeTopURLOutput.traffic) &&
        Objects.equals(this.URL, topURLForDescribeTopURLOutput.URL);
  }

  @Override
  public int hashCode() {
    return Objects.hash(bandwidth, QPS, rank, request, traffic, URL);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class TopURLForDescribeTopURLOutput {\n");
    
    sb.append("    bandwidth: ").append(toIndentedString(bandwidth)).append("\n");
    sb.append("    QPS: ").append(toIndentedString(QPS)).append("\n");
    sb.append("    rank: ").append(toIndentedString(rank)).append("\n");
    sb.append("    request: ").append(toIndentedString(request)).append("\n");
    sb.append("    traffic: ").append(toIndentedString(traffic)).append("\n");
    sb.append("    URL: ").append(toIndentedString(URL)).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