
com.dominodatalab.api.model.DominoNucleusLibAuthGlobalBannerSettings 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;
/**
* DominoNucleusLibAuthGlobalBannerSettings
*/
@JsonPropertyOrder({
DominoNucleusLibAuthGlobalBannerSettings.JSON_PROPERTY_IS_CLOSABLE,
DominoNucleusLibAuthGlobalBannerSettings.JSON_PROPERTY_REAPPEAR_TIME_AFTER_CLOSE_IN_SEC,
DominoNucleusLibAuthGlobalBannerSettings.JSON_PROPERTY_CONTENT
})
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-10-17T15:20:46.682098100-04:00[America/New_York]")
public class DominoNucleusLibAuthGlobalBannerSettings {
public static final String JSON_PROPERTY_IS_CLOSABLE = "isClosable";
private Boolean isClosable;
public static final String JSON_PROPERTY_REAPPEAR_TIME_AFTER_CLOSE_IN_SEC = "reappearTimeAfterCloseInSec";
private Integer reappearTimeAfterCloseInSec;
public static final String JSON_PROPERTY_CONTENT = "content";
private String content;
public DominoNucleusLibAuthGlobalBannerSettings() {
}
public DominoNucleusLibAuthGlobalBannerSettings isClosable(Boolean isClosable) {
this.isClosable = isClosable;
return this;
}
/**
* Get isClosable
* @return isClosable
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_IS_CLOSABLE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public Boolean getIsClosable() {
return isClosable;
}
@JsonProperty(JSON_PROPERTY_IS_CLOSABLE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setIsClosable(Boolean isClosable) {
this.isClosable = isClosable;
}
public DominoNucleusLibAuthGlobalBannerSettings reappearTimeAfterCloseInSec(Integer reappearTimeAfterCloseInSec) {
this.reappearTimeAfterCloseInSec = reappearTimeAfterCloseInSec;
return this;
}
/**
* Get reappearTimeAfterCloseInSec
* @return reappearTimeAfterCloseInSec
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_REAPPEAR_TIME_AFTER_CLOSE_IN_SEC)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Integer getReappearTimeAfterCloseInSec() {
return reappearTimeAfterCloseInSec;
}
@JsonProperty(JSON_PROPERTY_REAPPEAR_TIME_AFTER_CLOSE_IN_SEC)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setReappearTimeAfterCloseInSec(Integer reappearTimeAfterCloseInSec) {
this.reappearTimeAfterCloseInSec = reappearTimeAfterCloseInSec;
}
public DominoNucleusLibAuthGlobalBannerSettings content(String content) {
this.content = content;
return this;
}
/**
* Get content
* @return content
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CONTENT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getContent() {
return content;
}
@JsonProperty(JSON_PROPERTY_CONTENT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setContent(String content) {
this.content = content;
}
/**
* Return true if this domino.nucleus.lib.auth.GlobalBannerSettings object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
DominoNucleusLibAuthGlobalBannerSettings dominoNucleusLibAuthGlobalBannerSettings = (DominoNucleusLibAuthGlobalBannerSettings) o;
return Objects.equals(this.isClosable, dominoNucleusLibAuthGlobalBannerSettings.isClosable) &&
Objects.equals(this.reappearTimeAfterCloseInSec, dominoNucleusLibAuthGlobalBannerSettings.reappearTimeAfterCloseInSec) &&
Objects.equals(this.content, dominoNucleusLibAuthGlobalBannerSettings.content);
}
@Override
public int hashCode() {
return Objects.hash(isClosable, reappearTimeAfterCloseInSec, content);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class DominoNucleusLibAuthGlobalBannerSettings {\n");
sb.append(" isClosable: ").append(toIndentedString(isClosable)).append("\n");
sb.append(" reappearTimeAfterCloseInSec: ").append(toIndentedString(reappearTimeAfterCloseInSec)).append("\n");
sb.append(" content: ").append(toIndentedString(content)).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 `isClosable` to the URL query string
if (getIsClosable() != null) {
joiner.add(String.format("%sisClosable%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getIsClosable()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// add `reappearTimeAfterCloseInSec` to the URL query string
if (getReappearTimeAfterCloseInSec() != null) {
joiner.add(String.format("%sreappearTimeAfterCloseInSec%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getReappearTimeAfterCloseInSec()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// add `content` to the URL query string
if (getContent() != null) {
joiner.add(String.format("%scontent%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getContent()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
return joiner.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy