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

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

/*
 * Domino Data Lab API v4
 * This API is going to provide access to all the Domino functions available in the user interface. 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;


/**
 * DominoActivityApiScheduleJobEditActivityMetaData
 */
@JsonPropertyOrder({
  DominoActivityApiScheduleJobEditActivityMetaData.JSON_PROPERTY_ACTION,
  DominoActivityApiScheduleJobEditActivityMetaData.JSON_PROPERTY_FROM_TITLE,
  DominoActivityApiScheduleJobEditActivityMetaData.JSON_PROPERTY_FROM_COMMAND_TO_RUN,
  DominoActivityApiScheduleJobEditActivityMetaData.JSON_PROPERTY_FROM_CRON_SCHEDULE,
  DominoActivityApiScheduleJobEditActivityMetaData.JSON_PROPERTY_TO_TITLE,
  DominoActivityApiScheduleJobEditActivityMetaData.JSON_PROPERTY_TO_COMMAND_TO_RUN,
  DominoActivityApiScheduleJobEditActivityMetaData.JSON_PROPERTY_TO_CRON_SCHEDULE
})
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-10-17T15:20:46.682098100-04:00[America/New_York]")
public class DominoActivityApiScheduleJobEditActivityMetaData {
  /**
   * Gets or Sets action
   */
  public enum ActionEnum {
    SCHEDULED("scheduled"),
    
    PAUSED("paused"),
    
    EDITED("edited"),
    
    UNPAUSED("unpaused"),
    
    UNSCHEDULED("unscheduled");

    private String value;

    ActionEnum(String value) {
      this.value = value;
    }

    @JsonValue
    public String getValue() {
      return value;
    }

    @Override
    public String toString() {
      return String.valueOf(value);
    }

    @JsonCreator
    public static ActionEnum fromValue(String value) {
      for (ActionEnum b : ActionEnum.values()) {
        if (b.value.equals(value)) {
          return b;
        }
      }
      throw new IllegalArgumentException("Unexpected value '" + value + "'");
    }
  }

  public static final String JSON_PROPERTY_ACTION = "action";
  private ActionEnum action;

  public static final String JSON_PROPERTY_FROM_TITLE = "fromTitle";
  private String fromTitle;

  public static final String JSON_PROPERTY_FROM_COMMAND_TO_RUN = "fromCommandToRun";
  private String fromCommandToRun;

  public static final String JSON_PROPERTY_FROM_CRON_SCHEDULE = "fromCronSchedule";
  private String fromCronSchedule;

  public static final String JSON_PROPERTY_TO_TITLE = "toTitle";
  private String toTitle;

  public static final String JSON_PROPERTY_TO_COMMAND_TO_RUN = "toCommandToRun";
  private String toCommandToRun;

  public static final String JSON_PROPERTY_TO_CRON_SCHEDULE = "toCronSchedule";
  private String toCronSchedule;

  public DominoActivityApiScheduleJobEditActivityMetaData() { 
  }

  public DominoActivityApiScheduleJobEditActivityMetaData action(ActionEnum action) {
    this.action = action;
    return this;
  }

   /**
   * Get action
   * @return action
  **/
  @javax.annotation.Nonnull
  @JsonProperty(JSON_PROPERTY_ACTION)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)

  public ActionEnum getAction() {
    return action;
  }


  @JsonProperty(JSON_PROPERTY_ACTION)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setAction(ActionEnum action) {
    this.action = action;
  }


  public DominoActivityApiScheduleJobEditActivityMetaData fromTitle(String fromTitle) {
    this.fromTitle = fromTitle;
    return this;
  }

   /**
   * Get fromTitle
   * @return fromTitle
  **/
  @javax.annotation.Nullable
  @JsonProperty(JSON_PROPERTY_FROM_TITLE)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public String getFromTitle() {
    return fromTitle;
  }


  @JsonProperty(JSON_PROPERTY_FROM_TITLE)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setFromTitle(String fromTitle) {
    this.fromTitle = fromTitle;
  }


  public DominoActivityApiScheduleJobEditActivityMetaData fromCommandToRun(String fromCommandToRun) {
    this.fromCommandToRun = fromCommandToRun;
    return this;
  }

   /**
   * Get fromCommandToRun
   * @return fromCommandToRun
  **/
  @javax.annotation.Nonnull
  @JsonProperty(JSON_PROPERTY_FROM_COMMAND_TO_RUN)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)

  public String getFromCommandToRun() {
    return fromCommandToRun;
  }


  @JsonProperty(JSON_PROPERTY_FROM_COMMAND_TO_RUN)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setFromCommandToRun(String fromCommandToRun) {
    this.fromCommandToRun = fromCommandToRun;
  }


  public DominoActivityApiScheduleJobEditActivityMetaData fromCronSchedule(String fromCronSchedule) {
    this.fromCronSchedule = fromCronSchedule;
    return this;
  }

   /**
   * Get fromCronSchedule
   * @return fromCronSchedule
  **/
  @javax.annotation.Nonnull
  @JsonProperty(JSON_PROPERTY_FROM_CRON_SCHEDULE)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)

  public String getFromCronSchedule() {
    return fromCronSchedule;
  }


  @JsonProperty(JSON_PROPERTY_FROM_CRON_SCHEDULE)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setFromCronSchedule(String fromCronSchedule) {
    this.fromCronSchedule = fromCronSchedule;
  }


  public DominoActivityApiScheduleJobEditActivityMetaData toTitle(String toTitle) {
    this.toTitle = toTitle;
    return this;
  }

   /**
   * Get toTitle
   * @return toTitle
  **/
  @javax.annotation.Nullable
  @JsonProperty(JSON_PROPERTY_TO_TITLE)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public String getToTitle() {
    return toTitle;
  }


  @JsonProperty(JSON_PROPERTY_TO_TITLE)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setToTitle(String toTitle) {
    this.toTitle = toTitle;
  }


  public DominoActivityApiScheduleJobEditActivityMetaData toCommandToRun(String toCommandToRun) {
    this.toCommandToRun = toCommandToRun;
    return this;
  }

   /**
   * Get toCommandToRun
   * @return toCommandToRun
  **/
  @javax.annotation.Nonnull
  @JsonProperty(JSON_PROPERTY_TO_COMMAND_TO_RUN)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)

  public String getToCommandToRun() {
    return toCommandToRun;
  }


  @JsonProperty(JSON_PROPERTY_TO_COMMAND_TO_RUN)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setToCommandToRun(String toCommandToRun) {
    this.toCommandToRun = toCommandToRun;
  }


  public DominoActivityApiScheduleJobEditActivityMetaData toCronSchedule(String toCronSchedule) {
    this.toCronSchedule = toCronSchedule;
    return this;
  }

   /**
   * Get toCronSchedule
   * @return toCronSchedule
  **/
  @javax.annotation.Nonnull
  @JsonProperty(JSON_PROPERTY_TO_CRON_SCHEDULE)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)

  public String getToCronSchedule() {
    return toCronSchedule;
  }


  @JsonProperty(JSON_PROPERTY_TO_CRON_SCHEDULE)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setToCronSchedule(String toCronSchedule) {
    this.toCronSchedule = toCronSchedule;
  }


  /**
   * Return true if this domino.activity.api.ScheduleJobEditActivityMetaData object is equal to o.
   */
  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    DominoActivityApiScheduleJobEditActivityMetaData dominoActivityApiScheduleJobEditActivityMetaData = (DominoActivityApiScheduleJobEditActivityMetaData) o;
    return Objects.equals(this.action, dominoActivityApiScheduleJobEditActivityMetaData.action) &&
        Objects.equals(this.fromTitle, dominoActivityApiScheduleJobEditActivityMetaData.fromTitle) &&
        Objects.equals(this.fromCommandToRun, dominoActivityApiScheduleJobEditActivityMetaData.fromCommandToRun) &&
        Objects.equals(this.fromCronSchedule, dominoActivityApiScheduleJobEditActivityMetaData.fromCronSchedule) &&
        Objects.equals(this.toTitle, dominoActivityApiScheduleJobEditActivityMetaData.toTitle) &&
        Objects.equals(this.toCommandToRun, dominoActivityApiScheduleJobEditActivityMetaData.toCommandToRun) &&
        Objects.equals(this.toCronSchedule, dominoActivityApiScheduleJobEditActivityMetaData.toCronSchedule);
  }

  @Override
  public int hashCode() {
    return Objects.hash(action, fromTitle, fromCommandToRun, fromCronSchedule, toTitle, toCommandToRun, toCronSchedule);
  }

  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class DominoActivityApiScheduleJobEditActivityMetaData {\n");
    sb.append("    action: ").append(toIndentedString(action)).append("\n");
    sb.append("    fromTitle: ").append(toIndentedString(fromTitle)).append("\n");
    sb.append("    fromCommandToRun: ").append(toIndentedString(fromCommandToRun)).append("\n");
    sb.append("    fromCronSchedule: ").append(toIndentedString(fromCronSchedule)).append("\n");
    sb.append("    toTitle: ").append(toIndentedString(toTitle)).append("\n");
    sb.append("    toCommandToRun: ").append(toIndentedString(toCommandToRun)).append("\n");
    sb.append("    toCronSchedule: ").append(toIndentedString(toCronSchedule)).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 `action` to the URL query string
    if (getAction() != null) {
      joiner.add(String.format("%saction%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getAction()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    // add `fromTitle` to the URL query string
    if (getFromTitle() != null) {
      joiner.add(String.format("%sfromTitle%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getFromTitle()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    // add `fromCommandToRun` to the URL query string
    if (getFromCommandToRun() != null) {
      joiner.add(String.format("%sfromCommandToRun%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getFromCommandToRun()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    // add `fromCronSchedule` to the URL query string
    if (getFromCronSchedule() != null) {
      joiner.add(String.format("%sfromCronSchedule%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getFromCronSchedule()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    // add `toTitle` to the URL query string
    if (getToTitle() != null) {
      joiner.add(String.format("%stoTitle%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getToTitle()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    // add `toCommandToRun` to the URL query string
    if (getToCommandToRun() != null) {
      joiner.add(String.format("%stoCommandToRun%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getToCommandToRun()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    // add `toCronSchedule` to the URL query string
    if (getToCronSchedule() != null) {
      joiner.add(String.format("%stoCronSchedule%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getToCronSchedule()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    return joiner.toString();
  }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy