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

com.dominodatalab.api.model.DominoJobsInterfaceJobStatuses Maven / Gradle / Ivy

Go to download

Domino Data Lab API Client to connect to Domino web services using Java HTTP Client.

There is a newer version: 6.0.1.0
Show newest version
/*
 * Domino Data Lab API v4
 * This API provides access to select Domino functions available in Domino's non-public API. To authenticate your requests, include your API Key (which you can find on your account page) with the header X-Domino-Api-Key. 
 *
 * The version of the OpenAPI document: 4.0.0
 * 
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */


package com.dominodatalab.api.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 com.dominodatalab.api.invoker.ApiClient;
/**
 * DominoJobsInterfaceJobStatuses
 */
@JsonPropertyOrder({
  DominoJobsInterfaceJobStatuses.JSON_PROPERTY_EXECUTION_STATUS,
  DominoJobsInterfaceJobStatuses.JSON_PROPERTY_IS_ARCHIVED,
  DominoJobsInterfaceJobStatuses.JSON_PROPERTY_IS_COMPLETED,
  DominoJobsInterfaceJobStatuses.JSON_PROPERTY_IS_SCHEDULED
})
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-10-04T16:37:26.309454-04:00[America/New_York]", comments = "Generator version: 7.8.0")
public class DominoJobsInterfaceJobStatuses {
  public static final String JSON_PROPERTY_EXECUTION_STATUS = "executionStatus";
  private String executionStatus;

  public static final String JSON_PROPERTY_IS_ARCHIVED = "isArchived";
  private Boolean isArchived;

  public static final String JSON_PROPERTY_IS_COMPLETED = "isCompleted";
  private Boolean isCompleted;

  public static final String JSON_PROPERTY_IS_SCHEDULED = "isScheduled";
  private Boolean isScheduled;

  public DominoJobsInterfaceJobStatuses() { 
  }

  public DominoJobsInterfaceJobStatuses executionStatus(String executionStatus) {
    this.executionStatus = executionStatus;
    return this;
  }

  /**
   * Get executionStatus
   * @return executionStatus
   */
  @javax.annotation.Nonnull
  @JsonProperty(JSON_PROPERTY_EXECUTION_STATUS)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public String getExecutionStatus() {
    return executionStatus;
  }


  @JsonProperty(JSON_PROPERTY_EXECUTION_STATUS)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setExecutionStatus(String executionStatus) {
    this.executionStatus = executionStatus;
  }


  public DominoJobsInterfaceJobStatuses isArchived(Boolean isArchived) {
    this.isArchived = isArchived;
    return this;
  }

  /**
   * Get isArchived
   * @return isArchived
   */
  @javax.annotation.Nonnull
  @JsonProperty(JSON_PROPERTY_IS_ARCHIVED)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public Boolean getIsArchived() {
    return isArchived;
  }


  @JsonProperty(JSON_PROPERTY_IS_ARCHIVED)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setIsArchived(Boolean isArchived) {
    this.isArchived = isArchived;
  }


  public DominoJobsInterfaceJobStatuses isCompleted(Boolean isCompleted) {
    this.isCompleted = isCompleted;
    return this;
  }

  /**
   * Get isCompleted
   * @return isCompleted
   */
  @javax.annotation.Nonnull
  @JsonProperty(JSON_PROPERTY_IS_COMPLETED)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public Boolean getIsCompleted() {
    return isCompleted;
  }


  @JsonProperty(JSON_PROPERTY_IS_COMPLETED)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setIsCompleted(Boolean isCompleted) {
    this.isCompleted = isCompleted;
  }


  public DominoJobsInterfaceJobStatuses isScheduled(Boolean isScheduled) {
    this.isScheduled = isScheduled;
    return this;
  }

  /**
   * Get isScheduled
   * @return isScheduled
   */
  @javax.annotation.Nonnull
  @JsonProperty(JSON_PROPERTY_IS_SCHEDULED)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public Boolean getIsScheduled() {
    return isScheduled;
  }


  @JsonProperty(JSON_PROPERTY_IS_SCHEDULED)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setIsScheduled(Boolean isScheduled) {
    this.isScheduled = isScheduled;
  }


  /**
   * Return true if this domino.jobs.interface.JobStatuses object is equal to o.
   */
  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    DominoJobsInterfaceJobStatuses dominoJobsInterfaceJobStatuses = (DominoJobsInterfaceJobStatuses) o;
    return Objects.equals(this.executionStatus, dominoJobsInterfaceJobStatuses.executionStatus) &&
        Objects.equals(this.isArchived, dominoJobsInterfaceJobStatuses.isArchived) &&
        Objects.equals(this.isCompleted, dominoJobsInterfaceJobStatuses.isCompleted) &&
        Objects.equals(this.isScheduled, dominoJobsInterfaceJobStatuses.isScheduled);
  }

  @Override
  public int hashCode() {
    return Objects.hash(executionStatus, isArchived, isCompleted, isScheduled);
  }

  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class DominoJobsInterfaceJobStatuses {\n");
    sb.append("    executionStatus: ").append(toIndentedString(executionStatus)).append("\n");
    sb.append("    isArchived: ").append(toIndentedString(isArchived)).append("\n");
    sb.append("    isCompleted: ").append(toIndentedString(isCompleted)).append("\n");
    sb.append("    isScheduled: ").append(toIndentedString(isScheduled)).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 `executionStatus` to the URL query string
    if (getExecutionStatus() != null) {
      joiner.add(String.format("%sexecutionStatus%s=%s", prefix, suffix, URLEncoder.encode(ApiClient.valueToString(getExecutionStatus()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

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

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

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

    return joiner.toString();
  }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy