com.dominodatalab.api.model.DominoLauncherjobApiLauncherJobUploadedFile 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;
/**
* DominoLauncherjobApiLauncherJobUploadedFile
*/
@JsonPropertyOrder({
DominoLauncherjobApiLauncherJobUploadedFile.JSON_PROPERTY_PARAMETER_NAME,
DominoLauncherjobApiLauncherJobUploadedFile.JSON_PROPERTY_FILE_NAME,
DominoLauncherjobApiLauncherJobUploadedFile.JSON_PROPERTY_TEMP_FILE_BASE64_ENCODING
})
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-10-17T15:20:46.682098100-04:00[America/New_York]")
public class DominoLauncherjobApiLauncherJobUploadedFile {
public static final String JSON_PROPERTY_PARAMETER_NAME = "parameterName";
private String parameterName;
public static final String JSON_PROPERTY_FILE_NAME = "fileName";
private String fileName;
public static final String JSON_PROPERTY_TEMP_FILE_BASE64_ENCODING = "tempFileBase64Encoding";
private String tempFileBase64Encoding;
public DominoLauncherjobApiLauncherJobUploadedFile() {
}
public DominoLauncherjobApiLauncherJobUploadedFile parameterName(String parameterName) {
this.parameterName = parameterName;
return this;
}
/**
* Get parameterName
* @return parameterName
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_PARAMETER_NAME)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getParameterName() {
return parameterName;
}
@JsonProperty(JSON_PROPERTY_PARAMETER_NAME)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setParameterName(String parameterName) {
this.parameterName = parameterName;
}
public DominoLauncherjobApiLauncherJobUploadedFile fileName(String fileName) {
this.fileName = fileName;
return this;
}
/**
* Get fileName
* @return fileName
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_FILE_NAME)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getFileName() {
return fileName;
}
@JsonProperty(JSON_PROPERTY_FILE_NAME)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setFileName(String fileName) {
this.fileName = fileName;
}
public DominoLauncherjobApiLauncherJobUploadedFile tempFileBase64Encoding(String tempFileBase64Encoding) {
this.tempFileBase64Encoding = tempFileBase64Encoding;
return this;
}
/**
* Get tempFileBase64Encoding
* @return tempFileBase64Encoding
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_TEMP_FILE_BASE64_ENCODING)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getTempFileBase64Encoding() {
return tempFileBase64Encoding;
}
@JsonProperty(JSON_PROPERTY_TEMP_FILE_BASE64_ENCODING)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setTempFileBase64Encoding(String tempFileBase64Encoding) {
this.tempFileBase64Encoding = tempFileBase64Encoding;
}
/**
* Return true if this domino.launcherjob.api.LauncherJobUploadedFile object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
DominoLauncherjobApiLauncherJobUploadedFile dominoLauncherjobApiLauncherJobUploadedFile = (DominoLauncherjobApiLauncherJobUploadedFile) o;
return Objects.equals(this.parameterName, dominoLauncherjobApiLauncherJobUploadedFile.parameterName) &&
Objects.equals(this.fileName, dominoLauncherjobApiLauncherJobUploadedFile.fileName) &&
Objects.equals(this.tempFileBase64Encoding, dominoLauncherjobApiLauncherJobUploadedFile.tempFileBase64Encoding);
}
@Override
public int hashCode() {
return Objects.hash(parameterName, fileName, tempFileBase64Encoding);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class DominoLauncherjobApiLauncherJobUploadedFile {\n");
sb.append(" parameterName: ").append(toIndentedString(parameterName)).append("\n");
sb.append(" fileName: ").append(toIndentedString(fileName)).append("\n");
sb.append(" tempFileBase64Encoding: ").append(toIndentedString(tempFileBase64Encoding)).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 `parameterName` to the URL query string
if (getParameterName() != null) {
joiner.add(String.format("%sparameterName%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getParameterName()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// add `fileName` to the URL query string
if (getFileName() != null) {
joiner.add(String.format("%sfileName%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getFileName()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// add `tempFileBase64Encoding` to the URL query string
if (getTempFileBase64Encoding() != null) {
joiner.add(String.format("%stempFileBase64Encoding%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getTempFileBase64Encoding()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
return joiner.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy