All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.fireblocks.sdk.model.Parameter Maven / Gradle / Ivy
/*
* Fireblocks API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.6.2
* Contact: [email protected]
*
* 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.fireblocks.sdk.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import java.net.URLEncoder;
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import java.util.StringJoiner;
/** Parameter */
@JsonPropertyOrder({
Parameter.JSON_PROPERTY_NAME,
Parameter.JSON_PROPERTY_DESCRIPTION,
Parameter.JSON_PROPERTY_INTERNAL_TYPE,
Parameter.JSON_PROPERTY_TYPE,
Parameter.JSON_PROPERTY_COMPONENTS
})
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class Parameter {
public static final String JSON_PROPERTY_NAME = "name";
private String name;
public static final String JSON_PROPERTY_DESCRIPTION = "description";
private String description;
public static final String JSON_PROPERTY_INTERNAL_TYPE = "internalType";
private String internalType;
public static final String JSON_PROPERTY_TYPE = "type";
private String type;
public static final String JSON_PROPERTY_COMPONENTS = "components";
private List components;
public Parameter() {}
public Parameter name(String name) {
this.name = name;
return this;
}
/**
* The name of the parameter as it appears in the ABI
*
* @return name
*/
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getName() {
return name;
}
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setName(String name) {
this.name = name;
}
public Parameter description(String description) {
this.description = description;
return this;
}
/**
* A description of the parameter, fetched from the devdoc of this contract
*
* @return description
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getDescription() {
return description;
}
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setDescription(String description) {
this.description = description;
}
public Parameter internalType(String internalType) {
this.internalType = internalType;
return this;
}
/**
* The internal type of the parameter as it appears in the ABI
*
* @return internalType
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_INTERNAL_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getInternalType() {
return internalType;
}
@JsonProperty(JSON_PROPERTY_INTERNAL_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setInternalType(String internalType) {
this.internalType = internalType;
}
public Parameter type(String type) {
this.type = type;
return this;
}
/**
* The type of the parameter as it appears in the ABI
*
* @return type
*/
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getType() {
return type;
}
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setType(String type) {
this.type = type;
}
public Parameter components(List components) {
this.components = components;
return this;
}
public Parameter addComponentsItem(Parameter componentsItem) {
if (this.components == null) {
this.components = new ArrayList<>();
}
this.components.add(componentsItem);
return this;
}
/**
* Get components
*
* @return components
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_COMPONENTS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List getComponents() {
return components;
}
@JsonProperty(JSON_PROPERTY_COMPONENTS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setComponents(List components) {
this.components = components;
}
/** Return true if this Parameter object is equal to o. */
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Parameter parameter = (Parameter) o;
return Objects.equals(this.name, parameter.name)
&& Objects.equals(this.description, parameter.description)
&& Objects.equals(this.internalType, parameter.internalType)
&& Objects.equals(this.type, parameter.type)
&& Objects.equals(this.components, parameter.components);
}
@Override
public int hashCode() {
return Objects.hash(name, description, internalType, type, components);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Parameter {\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" internalType: ").append(toIndentedString(internalType)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" components: ").append(toIndentedString(components)).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 `name` to the URL query string
if (getName() != null) {
joiner.add(
String.format(
"%sname%s=%s",
prefix,
suffix,
URLEncoder.encode(String.valueOf(getName()), StandardCharsets.UTF_8)
.replaceAll("\\+", "%20")));
}
// add `description` to the URL query string
if (getDescription() != null) {
joiner.add(
String.format(
"%sdescription%s=%s",
prefix,
suffix,
URLEncoder.encode(
String.valueOf(getDescription()),
StandardCharsets.UTF_8)
.replaceAll("\\+", "%20")));
}
// add `internalType` to the URL query string
if (getInternalType() != null) {
joiner.add(
String.format(
"%sinternalType%s=%s",
prefix,
suffix,
URLEncoder.encode(
String.valueOf(getInternalType()),
StandardCharsets.UTF_8)
.replaceAll("\\+", "%20")));
}
// add `type` to the URL query string
if (getType() != null) {
joiner.add(
String.format(
"%stype%s=%s",
prefix,
suffix,
URLEncoder.encode(String.valueOf(getType()), StandardCharsets.UTF_8)
.replaceAll("\\+", "%20")));
}
// add `components` to the URL query string
if (getComponents() != null) {
for (int i = 0; i < getComponents().size(); i++) {
if (getComponents().get(i) != null) {
joiner.add(
getComponents()
.get(i)
.toUrlQueryString(
String.format(
"%scomponents%s%s",
prefix,
suffix,
"".equals(suffix)
? ""
: String.format(
"%s%d%s",
containerPrefix,
i,
containerSuffix))));
}
}
}
return joiner.toString();
}
}