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

com.volcengine.waf.model.SystemRuleSwitchForUpdateCustomSystemVulRuleInput Maven / Gradle / Ivy

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



public class SystemRuleSwitchForUpdateCustomSystemVulRuleInput {
  @SerializedName("CustomSystemRuleSwitch")
  private Integer customSystemRuleSwitch = null;

  @SerializedName("RuleID")
  private Integer ruleID = null;

  public SystemRuleSwitchForUpdateCustomSystemVulRuleInput customSystemRuleSwitch(Integer customSystemRuleSwitch) {
    this.customSystemRuleSwitch = customSystemRuleSwitch;
    return this;
  }

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

  public void setCustomSystemRuleSwitch(Integer customSystemRuleSwitch) {
    this.customSystemRuleSwitch = customSystemRuleSwitch;
  }

  public SystemRuleSwitchForUpdateCustomSystemVulRuleInput ruleID(Integer ruleID) {
    this.ruleID = ruleID;
    return this;
  }

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

  public void setRuleID(Integer ruleID) {
    this.ruleID = ruleID;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    SystemRuleSwitchForUpdateCustomSystemVulRuleInput systemRuleSwitchForUpdateCustomSystemVulRuleInput = (SystemRuleSwitchForUpdateCustomSystemVulRuleInput) o;
    return Objects.equals(this.customSystemRuleSwitch, systemRuleSwitchForUpdateCustomSystemVulRuleInput.customSystemRuleSwitch) &&
        Objects.equals(this.ruleID, systemRuleSwitchForUpdateCustomSystemVulRuleInput.ruleID);
  }

  @Override
  public int hashCode() {
    return Objects.hash(customSystemRuleSwitch, ruleID);
  }


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