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

com.dominodatalab.api.model.DominoCommonModelproductAppVersionOverview 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.ArrayList;
import java.util.Arrays;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;


/**
 * DominoCommonModelproductAppVersionOverview
 */
@JsonPropertyOrder({
  DominoCommonModelproductAppVersionOverview.JSON_PROPERTY_ID,
  DominoCommonModelproductAppVersionOverview.JSON_PROPERTY_STARTED,
  DominoCommonModelproductAppVersionOverview.JSON_PROPERTY_DURATION,
  DominoCommonModelproductAppVersionOverview.JSON_PROPERTY_PUBLISHING_USER_ID,
  DominoCommonModelproductAppVersionOverview.JSON_PROPERTY_PUBLISHING_USERNAME,
  DominoCommonModelproductAppVersionOverview.JSON_PROPERTY_STATUS,
  DominoCommonModelproductAppVersionOverview.JSON_PROPERTY_GOAL_IDS
})
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-10-17T15:20:46.682098100-04:00[America/New_York]")
public class DominoCommonModelproductAppVersionOverview {
  public static final String JSON_PROPERTY_ID = "id";
  private String id;

  public static final String JSON_PROPERTY_STARTED = "started";
  private Long started;

  public static final String JSON_PROPERTY_DURATION = "duration";
  private Integer duration;

  public static final String JSON_PROPERTY_PUBLISHING_USER_ID = "publishingUserId";
  private String publishingUserId;

  public static final String JSON_PROPERTY_PUBLISHING_USERNAME = "publishingUsername";
  private String publishingUsername;

  public static final String JSON_PROPERTY_STATUS = "status";
  private String status;

  public static final String JSON_PROPERTY_GOAL_IDS = "goalIds";
  private List goalIds = new ArrayList<>();

  public DominoCommonModelproductAppVersionOverview() { 
  }

  public DominoCommonModelproductAppVersionOverview id(String id) {
    this.id = id;
    return this;
  }

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

  public String getId() {
    return id;
  }


  @JsonProperty(JSON_PROPERTY_ID)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setId(String id) {
    this.id = id;
  }


  public DominoCommonModelproductAppVersionOverview started(Long started) {
    this.started = started;
    return this;
  }

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

  public Long getStarted() {
    return started;
  }


  @JsonProperty(JSON_PROPERTY_STARTED)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setStarted(Long started) {
    this.started = started;
  }


  public DominoCommonModelproductAppVersionOverview duration(Integer duration) {
    this.duration = duration;
    return this;
  }

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

  public Integer getDuration() {
    return duration;
  }


  @JsonProperty(JSON_PROPERTY_DURATION)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setDuration(Integer duration) {
    this.duration = duration;
  }


  public DominoCommonModelproductAppVersionOverview publishingUserId(String publishingUserId) {
    this.publishingUserId = publishingUserId;
    return this;
  }

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

  public String getPublishingUserId() {
    return publishingUserId;
  }


  @JsonProperty(JSON_PROPERTY_PUBLISHING_USER_ID)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setPublishingUserId(String publishingUserId) {
    this.publishingUserId = publishingUserId;
  }


  public DominoCommonModelproductAppVersionOverview publishingUsername(String publishingUsername) {
    this.publishingUsername = publishingUsername;
    return this;
  }

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

  public String getPublishingUsername() {
    return publishingUsername;
  }


  @JsonProperty(JSON_PROPERTY_PUBLISHING_USERNAME)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setPublishingUsername(String publishingUsername) {
    this.publishingUsername = publishingUsername;
  }


  public DominoCommonModelproductAppVersionOverview status(String status) {
    this.status = status;
    return this;
  }

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

  public String getStatus() {
    return status;
  }


  @JsonProperty(JSON_PROPERTY_STATUS)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setStatus(String status) {
    this.status = status;
  }


  public DominoCommonModelproductAppVersionOverview goalIds(List goalIds) {
    this.goalIds = goalIds;
    return this;
  }

  public DominoCommonModelproductAppVersionOverview addGoalIdsItem(String goalIdsItem) {
    if (this.goalIds == null) {
      this.goalIds = new ArrayList<>();
    }
    this.goalIds.add(goalIdsItem);
    return this;
  }

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

  public List getGoalIds() {
    return goalIds;
  }


  @JsonProperty(JSON_PROPERTY_GOAL_IDS)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setGoalIds(List goalIds) {
    this.goalIds = goalIds;
  }


  /**
   * Return true if this domino.common.modelproduct.AppVersionOverview object is equal to o.
   */
  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    DominoCommonModelproductAppVersionOverview dominoCommonModelproductAppVersionOverview = (DominoCommonModelproductAppVersionOverview) o;
    return Objects.equals(this.id, dominoCommonModelproductAppVersionOverview.id) &&
        Objects.equals(this.started, dominoCommonModelproductAppVersionOverview.started) &&
        Objects.equals(this.duration, dominoCommonModelproductAppVersionOverview.duration) &&
        Objects.equals(this.publishingUserId, dominoCommonModelproductAppVersionOverview.publishingUserId) &&
        Objects.equals(this.publishingUsername, dominoCommonModelproductAppVersionOverview.publishingUsername) &&
        Objects.equals(this.status, dominoCommonModelproductAppVersionOverview.status) &&
        Objects.equals(this.goalIds, dominoCommonModelproductAppVersionOverview.goalIds);
  }

  @Override
  public int hashCode() {
    return Objects.hash(id, started, duration, publishingUserId, publishingUsername, status, goalIds);
  }

  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class DominoCommonModelproductAppVersionOverview {\n");
    sb.append("    id: ").append(toIndentedString(id)).append("\n");
    sb.append("    started: ").append(toIndentedString(started)).append("\n");
    sb.append("    duration: ").append(toIndentedString(duration)).append("\n");
    sb.append("    publishingUserId: ").append(toIndentedString(publishingUserId)).append("\n");
    sb.append("    publishingUsername: ").append(toIndentedString(publishingUsername)).append("\n");
    sb.append("    status: ").append(toIndentedString(status)).append("\n");
    sb.append("    goalIds: ").append(toIndentedString(goalIds)).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 `id` to the URL query string
    if (getId() != null) {
      joiner.add(String.format("%sid%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getId()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

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

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

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

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

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

    // add `goalIds` to the URL query string
    if (getGoalIds() != null) {
      for (int i = 0; i < getGoalIds().size(); i++) {
        joiner.add(String.format("%sgoalIds%s%s=%s", prefix, suffix,
            "".equals(suffix) ? "" : String.format("%s%d%s", containerPrefix, i, containerSuffix),
            URLEncoder.encode(String.valueOf(getGoalIds().get(i)), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
      }
    }

    return joiner.toString();
  }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy