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

com.volcengine.cdn.model.BandwidthLimitActionForAddCdnDomainInput Maven / Gradle / Ivy

There is a newer version: 0.1.129
Show newest version
/*
 * cdn
 * 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.cdn.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;
/**
 * BandwidthLimitActionForAddCdnDomainInput
 */



public class BandwidthLimitActionForAddCdnDomainInput {
  @SerializedName("BandwidthThreshold")
  private Long bandwidthThreshold = null;

  @SerializedName("LimitType")
  private String limitType = null;

  @SerializedName("SpeedLimitRate")
  private Long speedLimitRate = null;

  @SerializedName("SpeedLimitRateMax")
  private Long speedLimitRateMax = null;

  public BandwidthLimitActionForAddCdnDomainInput bandwidthThreshold(Long bandwidthThreshold) {
    this.bandwidthThreshold = bandwidthThreshold;
    return this;
  }

   /**
   * Get bandwidthThreshold
   * @return bandwidthThreshold
  **/
  @Schema(description = "")
  public Long getBandwidthThreshold() {
    return bandwidthThreshold;
  }

  public void setBandwidthThreshold(Long bandwidthThreshold) {
    this.bandwidthThreshold = bandwidthThreshold;
  }

  public BandwidthLimitActionForAddCdnDomainInput limitType(String limitType) {
    this.limitType = limitType;
    return this;
  }

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

  public void setLimitType(String limitType) {
    this.limitType = limitType;
  }

  public BandwidthLimitActionForAddCdnDomainInput speedLimitRate(Long speedLimitRate) {
    this.speedLimitRate = speedLimitRate;
    return this;
  }

   /**
   * Get speedLimitRate
   * @return speedLimitRate
  **/
  @Schema(description = "")
  public Long getSpeedLimitRate() {
    return speedLimitRate;
  }

  public void setSpeedLimitRate(Long speedLimitRate) {
    this.speedLimitRate = speedLimitRate;
  }

  public BandwidthLimitActionForAddCdnDomainInput speedLimitRateMax(Long speedLimitRateMax) {
    this.speedLimitRateMax = speedLimitRateMax;
    return this;
  }

   /**
   * Get speedLimitRateMax
   * @return speedLimitRateMax
  **/
  @Schema(description = "")
  public Long getSpeedLimitRateMax() {
    return speedLimitRateMax;
  }

  public void setSpeedLimitRateMax(Long speedLimitRateMax) {
    this.speedLimitRateMax = speedLimitRateMax;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    BandwidthLimitActionForAddCdnDomainInput bandwidthLimitActionForAddCdnDomainInput = (BandwidthLimitActionForAddCdnDomainInput) o;
    return Objects.equals(this.bandwidthThreshold, bandwidthLimitActionForAddCdnDomainInput.bandwidthThreshold) &&
        Objects.equals(this.limitType, bandwidthLimitActionForAddCdnDomainInput.limitType) &&
        Objects.equals(this.speedLimitRate, bandwidthLimitActionForAddCdnDomainInput.speedLimitRate) &&
        Objects.equals(this.speedLimitRateMax, bandwidthLimitActionForAddCdnDomainInput.speedLimitRateMax);
  }

  @Override
  public int hashCode() {
    return Objects.hash(bandwidthThreshold, limitType, speedLimitRate, speedLimitRateMax);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class BandwidthLimitActionForAddCdnDomainInput {\n");
    
    sb.append("    bandwidthThreshold: ").append(toIndentedString(bandwidthThreshold)).append("\n");
    sb.append("    limitType: ").append(toIndentedString(limitType)).append("\n");
    sb.append("    speedLimitRate: ").append(toIndentedString(speedLimitRate)).append("\n");
    sb.append("    speedLimitRateMax: ").append(toIndentedString(speedLimitRateMax)).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