
com.dominodatalab.pub.model.ModelApiAccessToken Maven / Gradle / Ivy
/*
* Domino Public API
* Domino Public API Endpoints
*
* The version of the OpenAPI document: 0.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.pub.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.math.BigDecimal;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.dominodatalab.pub.invoker.ApiClient;
/**
* ModelApiAccessToken
*/
@JsonPropertyOrder({
ModelApiAccessToken.JSON_PROPERTY_CREATED,
ModelApiAccessToken.JSON_PROPERTY_CREATED_BY,
ModelApiAccessToken.JSON_PROPERTY_ID,
ModelApiAccessToken.JSON_PROPERTY_LAST_GENERATED,
ModelApiAccessToken.JSON_PROPERTY_LAST_GENERATED_BY,
ModelApiAccessToken.JSON_PROPERTY_NAME
})
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-10-04T16:37:28.765500600-04:00[America/New_York]", comments = "Generator version: 7.8.0")
public class ModelApiAccessToken {
public static final String JSON_PROPERTY_CREATED = "created";
private BigDecimal created;
public static final String JSON_PROPERTY_CREATED_BY = "createdBy";
private String createdBy;
public static final String JSON_PROPERTY_ID = "id";
private String id;
public static final String JSON_PROPERTY_LAST_GENERATED = "lastGenerated";
private BigDecimal lastGenerated;
public static final String JSON_PROPERTY_LAST_GENERATED_BY = "lastGeneratedBy";
private String lastGeneratedBy;
public static final String JSON_PROPERTY_NAME = "name";
private String name;
public ModelApiAccessToken() {
}
public ModelApiAccessToken created(BigDecimal created) {
this.created = created;
return this;
}
/**
* The creation date for the access token.
* @return created
*/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_CREATED)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public BigDecimal getCreated() {
return created;
}
@JsonProperty(JSON_PROPERTY_CREATED)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setCreated(BigDecimal created) {
this.created = created;
}
public ModelApiAccessToken createdBy(String createdBy) {
this.createdBy = createdBy;
return this;
}
/**
* The id of the user that created the access token.
* @return createdBy
*/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_CREATED_BY)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getCreatedBy() {
return createdBy;
}
@JsonProperty(JSON_PROPERTY_CREATED_BY)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setCreatedBy(String createdBy) {
this.createdBy = createdBy;
}
public ModelApiAccessToken id(String id) {
this.id = id;
return this;
}
/**
* The id of the access token.
* @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 ModelApiAccessToken lastGenerated(BigDecimal lastGenerated) {
this.lastGenerated = lastGenerated;
return this;
}
/**
* The date the access token was last generated.
* @return lastGenerated
*/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_LAST_GENERATED)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public BigDecimal getLastGenerated() {
return lastGenerated;
}
@JsonProperty(JSON_PROPERTY_LAST_GENERATED)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setLastGenerated(BigDecimal lastGenerated) {
this.lastGenerated = lastGenerated;
}
public ModelApiAccessToken lastGeneratedBy(String lastGeneratedBy) {
this.lastGeneratedBy = lastGeneratedBy;
return this;
}
/**
* The id of the user that last generated the access token.
* @return lastGeneratedBy
*/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_LAST_GENERATED_BY)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getLastGeneratedBy() {
return lastGeneratedBy;
}
@JsonProperty(JSON_PROPERTY_LAST_GENERATED_BY)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setLastGeneratedBy(String lastGeneratedBy) {
this.lastGeneratedBy = lastGeneratedBy;
}
public ModelApiAccessToken name(String name) {
this.name = name;
return this;
}
/**
* The name of the access token.
* @return name
*/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getName() {
return name;
}
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setName(String name) {
this.name = name;
}
/**
* Return true if this ModelApiAccessToken object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ModelApiAccessToken modelApiAccessToken = (ModelApiAccessToken) o;
return Objects.equals(this.created, modelApiAccessToken.created) &&
Objects.equals(this.createdBy, modelApiAccessToken.createdBy) &&
Objects.equals(this.id, modelApiAccessToken.id) &&
Objects.equals(this.lastGenerated, modelApiAccessToken.lastGenerated) &&
Objects.equals(this.lastGeneratedBy, modelApiAccessToken.lastGeneratedBy) &&
Objects.equals(this.name, modelApiAccessToken.name);
}
@Override
public int hashCode() {
return Objects.hash(created, createdBy, id, lastGenerated, lastGeneratedBy, name);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ModelApiAccessToken {\n");
sb.append(" created: ").append(toIndentedString(created)).append("\n");
sb.append(" createdBy: ").append(toIndentedString(createdBy)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" lastGenerated: ").append(toIndentedString(lastGenerated)).append("\n");
sb.append(" lastGeneratedBy: ").append(toIndentedString(lastGeneratedBy)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).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 `created` to the URL query string
if (getCreated() != null) {
joiner.add(String.format("%screated%s=%s", prefix, suffix, URLEncoder.encode(ApiClient.valueToString(getCreated()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// add `createdBy` to the URL query string
if (getCreatedBy() != null) {
joiner.add(String.format("%screatedBy%s=%s", prefix, suffix, URLEncoder.encode(ApiClient.valueToString(getCreatedBy()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// add `id` to the URL query string
if (getId() != null) {
joiner.add(String.format("%sid%s=%s", prefix, suffix, URLEncoder.encode(ApiClient.valueToString(getId()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// add `lastGenerated` to the URL query string
if (getLastGenerated() != null) {
joiner.add(String.format("%slastGenerated%s=%s", prefix, suffix, URLEncoder.encode(ApiClient.valueToString(getLastGenerated()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// add `lastGeneratedBy` to the URL query string
if (getLastGeneratedBy() != null) {
joiner.add(String.format("%slastGeneratedBy%s=%s", prefix, suffix, URLEncoder.encode(ApiClient.valueToString(getLastGeneratedBy()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// add `name` to the URL query string
if (getName() != null) {
joiner.add(String.format("%sname%s=%s", prefix, suffix, URLEncoder.encode(ApiClient.valueToString(getName()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
return joiner.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy