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

io.quarkiverse.mailpit.test.model.HTMLCheckScore Maven / Gradle / Ivy

The newest version!
/*
 * Mailpit API
 * OpenAPI 2.0 documentation for [Mailpit](https://github.com/axllent/mailpit).
 *
 * The version of the OpenAPI document: v1
 * 
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */


package io.quarkiverse.mailpit.test.model;

import java.net.URLEncoder;
import java.nio.charset.StandardCharsets;
import java.util.StringJoiner;
import java.util.Objects;
import java.util.Map;
import java.util.HashMap;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;


import io.quarkiverse.mailpit.test.invoker.ApiClient;
/**
 * Score struct
 */
@JsonPropertyOrder({
  HTMLCheckScore.JSON_PROPERTY_FOUND,
  HTMLCheckScore.JSON_PROPERTY_PARTIAL,
  HTMLCheckScore.JSON_PROPERTY_SUPPORTED,
  HTMLCheckScore.JSON_PROPERTY_UNSUPPORTED
})
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.9.0")
public class HTMLCheckScore {
  public static final String JSON_PROPERTY_FOUND = "Found";
  private Long found;

  public static final String JSON_PROPERTY_PARTIAL = "Partial";
  private Float partial;

  public static final String JSON_PROPERTY_SUPPORTED = "Supported";
  private Float supported;

  public static final String JSON_PROPERTY_UNSUPPORTED = "Unsupported";
  private Float unsupported;

  public HTMLCheckScore() { 
  }

  public HTMLCheckScore found(Long found) {
    this.found = found;
    return this;
  }

  /**
   * Number of matches in the document
   * @return found
   */
  @jakarta.annotation.Nullable
  @JsonProperty(JSON_PROPERTY_FOUND)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public Long getFound() {
    return found;
  }


  @JsonProperty(JSON_PROPERTY_FOUND)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setFound(Long found) {
    this.found = found;
  }


  public HTMLCheckScore partial(Float partial) {
    this.partial = partial;
    return this;
  }

  /**
   * Total percentage partially supported
   * @return partial
   */
  @jakarta.annotation.Nullable
  @JsonProperty(JSON_PROPERTY_PARTIAL)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public Float getPartial() {
    return partial;
  }


  @JsonProperty(JSON_PROPERTY_PARTIAL)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setPartial(Float partial) {
    this.partial = partial;
  }


  public HTMLCheckScore supported(Float supported) {
    this.supported = supported;
    return this;
  }

  /**
   * Total percentage supported
   * @return supported
   */
  @jakarta.annotation.Nullable
  @JsonProperty(JSON_PROPERTY_SUPPORTED)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public Float getSupported() {
    return supported;
  }


  @JsonProperty(JSON_PROPERTY_SUPPORTED)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setSupported(Float supported) {
    this.supported = supported;
  }


  public HTMLCheckScore unsupported(Float unsupported) {
    this.unsupported = unsupported;
    return this;
  }

  /**
   * Total percentage unsupported
   * @return unsupported
   */
  @jakarta.annotation.Nullable
  @JsonProperty(JSON_PROPERTY_UNSUPPORTED)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public Float getUnsupported() {
    return unsupported;
  }


  @JsonProperty(JSON_PROPERTY_UNSUPPORTED)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setUnsupported(Float unsupported) {
    this.unsupported = unsupported;
  }


  /**
   * Return true if this HTMLCheckScore object is equal to o.
   */
  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    HTMLCheckScore htMLCheckScore = (HTMLCheckScore) o;
    return Objects.equals(this.found, htMLCheckScore.found) &&
        Objects.equals(this.partial, htMLCheckScore.partial) &&
        Objects.equals(this.supported, htMLCheckScore.supported) &&
        Objects.equals(this.unsupported, htMLCheckScore.unsupported);
  }

  @Override
  public int hashCode() {
    return Objects.hash(found, partial, supported, unsupported);
  }

  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class HTMLCheckScore {\n");
    sb.append("    found: ").append(toIndentedString(found)).append("\n");
    sb.append("    partial: ").append(toIndentedString(partial)).append("\n");
    sb.append("    supported: ").append(toIndentedString(supported)).append("\n");
    sb.append("    unsupported: ").append(toIndentedString(unsupported)).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(Object o) {
    if (o == null) {
      return "null";
    }
    return o.toString().replace("\n", "\n    ");
  }

  /**
   * Convert the instance into URL query string.
   *
   * @return URL query string
   */
  public String toUrlQueryString() {
    return toUrlQueryString(null);
  }

  /**
   * Convert the instance into URL query string.
   *
   * @param prefix prefix of the query string
   * @return URL query string
   */
  public String toUrlQueryString(String prefix) {
    String suffix = "";
    String containerSuffix = "";
    String containerPrefix = "";
    if (prefix == null) {
      // style=form, explode=true, e.g. /pet?name=cat&type=manx
      prefix = "";
    } else {
      // deepObject style e.g. /pet?id[name]=cat&id[type]=manx
      prefix = prefix + "[";
      suffix = "]";
      containerSuffix = "]";
      containerPrefix = "[";
    }

    StringJoiner joiner = new StringJoiner("&");

    // add `Found` to the URL query string
    if (getFound() != null) {
      joiner.add(String.format("%sFound%s=%s", prefix, suffix, URLEncoder.encode(ApiClient.valueToString(getFound()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    // add `Partial` to the URL query string
    if (getPartial() != null) {
      joiner.add(String.format("%sPartial%s=%s", prefix, suffix, URLEncoder.encode(ApiClient.valueToString(getPartial()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    // add `Supported` to the URL query string
    if (getSupported() != null) {
      joiner.add(String.format("%sSupported%s=%s", prefix, suffix, URLEncoder.encode(ApiClient.valueToString(getSupported()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    // add `Unsupported` to the URL query string
    if (getUnsupported() != null) {
      joiner.add(String.format("%sUnsupported%s=%s", prefix, suffix, URLEncoder.encode(ApiClient.valueToString(getUnsupported()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    return joiner.toString();
  }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy