com.fireblocks.sdk.model.MediaEntityResponse 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.JsonCreator;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonValue;
import java.net.URLEncoder;
import java.nio.charset.StandardCharsets;
import java.util.Objects;
import java.util.StringJoiner;
/** MediaEntityResponse */
@JsonPropertyOrder({
MediaEntityResponse.JSON_PROPERTY_URL,
MediaEntityResponse.JSON_PROPERTY_CONTENT_TYPE
})
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class MediaEntityResponse {
public static final String JSON_PROPERTY_URL = "url";
private String url;
/** Media type */
public enum ContentTypeEnum {
IMAGE("IMAGE"),
VIDEO("VIDEO"),
ANIMATION("ANIMATION"),
THREE_D("THREE_D"),
TEXT("TEXT"),
GIF("GIF"),
UNKNOWN_TYPE("UNKNOWN_TYPE"),
SVG("SVG"),
AUDIO("AUDIO");
private String value;
ContentTypeEnum(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
@JsonCreator
public static ContentTypeEnum fromValue(String value) {
for (ContentTypeEnum b : ContentTypeEnum.values()) {
if (b.value.equals(value)) {
return b;
}
}
throw new IllegalArgumentException("Unexpected value '" + value + "'");
}
}
public static final String JSON_PROPERTY_CONTENT_TYPE = "contentType";
private ContentTypeEnum contentType;
public MediaEntityResponse() {}
public MediaEntityResponse url(String url) {
this.url = url;
return this;
}
/**
* Cached accessible URL
*
* @return url
*/
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_URL)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getUrl() {
return url;
}
@JsonProperty(JSON_PROPERTY_URL)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setUrl(String url) {
this.url = url;
}
public MediaEntityResponse contentType(ContentTypeEnum contentType) {
this.contentType = contentType;
return this;
}
/**
* Media type
*
* @return contentType
*/
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_CONTENT_TYPE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public ContentTypeEnum getContentType() {
return contentType;
}
@JsonProperty(JSON_PROPERTY_CONTENT_TYPE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setContentType(ContentTypeEnum contentType) {
this.contentType = contentType;
}
/** Return true if this MediaEntityResponse object is equal to o. */
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
MediaEntityResponse mediaEntityResponse = (MediaEntityResponse) o;
return Objects.equals(this.url, mediaEntityResponse.url)
&& Objects.equals(this.contentType, mediaEntityResponse.contentType);
}
@Override
public int hashCode() {
return Objects.hash(url, contentType);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class MediaEntityResponse {\n");
sb.append(" url: ").append(toIndentedString(url)).append("\n");
sb.append(" contentType: ").append(toIndentedString(contentType)).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 `url` to the URL query string
if (getUrl() != null) {
joiner.add(
String.format(
"%surl%s=%s",
prefix,
suffix,
URLEncoder.encode(String.valueOf(getUrl()), StandardCharsets.UTF_8)
.replaceAll("\\+", "%20")));
}
// add `contentType` to the URL query string
if (getContentType() != null) {
joiner.add(
String.format(
"%scontentType%s=%s",
prefix,
suffix,
URLEncoder.encode(
String.valueOf(getContentType()),
StandardCharsets.UTF_8)
.replaceAll("\\+", "%20")));
}
return joiner.toString();
}
}