com.hellosign.openapi.model.SubFormFieldsPerDocumentHyperlink Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hellosign-java-sdk Show documentation
Show all versions of hellosign-java-sdk Show documentation
Use the HelloSign Java SDK to connect your Java app to HelloSign's service in microseconds!
The newest version!
/*
* HelloSign API
* HelloSign v3 API
*
* The version of the OpenAPI document: 3.0.0
* 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.hellosign.openapi.model;
import java.util.Objects;
import java.util.Arrays;
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.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import com.hellosign.openapi.model.SubFormFieldsPerDocumentBase;
import com.hellosign.openapi.model.SubFormFieldsPerDocumentCheckbox;
import com.hellosign.openapi.model.SubFormFieldsPerDocumentCheckboxMerge;
import com.hellosign.openapi.model.SubFormFieldsPerDocumentDateSigned;
import com.hellosign.openapi.model.SubFormFieldsPerDocumentDropdown;
import com.hellosign.openapi.model.SubFormFieldsPerDocumentHyperlink;
import com.hellosign.openapi.model.SubFormFieldsPerDocumentInitials;
import com.hellosign.openapi.model.SubFormFieldsPerDocumentRadio;
import com.hellosign.openapi.model.SubFormFieldsPerDocumentSignature;
import com.hellosign.openapi.model.SubFormFieldsPerDocumentText;
import com.hellosign.openapi.model.SubFormFieldsPerDocumentTextMerge;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.hellosign.openapi.JSON;
import com.hellosign.openapi.ApiException;
/**
* This class extends `SubFormFieldsPerDocumentBase`.
*/
@ApiModel(description = "This class extends `SubFormFieldsPerDocumentBase`.")
@JsonPropertyOrder({
SubFormFieldsPerDocumentHyperlink.JSON_PROPERTY_TYPE,
SubFormFieldsPerDocumentHyperlink.JSON_PROPERTY_CONTENT,
SubFormFieldsPerDocumentHyperlink.JSON_PROPERTY_CONTENT_URL
})
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.EXISTING_PROPERTY, property = "type", visible = true)
@JsonSubTypes({
@JsonSubTypes.Type(value = SubFormFieldsPerDocumentCheckbox.class, name = "checkbox"),
@JsonSubTypes.Type(value = SubFormFieldsPerDocumentCheckboxMerge.class, name = "checkbox-merge"),
@JsonSubTypes.Type(value = SubFormFieldsPerDocumentDateSigned.class, name = "date_signed"),
@JsonSubTypes.Type(value = SubFormFieldsPerDocumentDropdown.class, name = "dropdown"),
@JsonSubTypes.Type(value = SubFormFieldsPerDocumentHyperlink.class, name = "hyperlink"),
@JsonSubTypes.Type(value = SubFormFieldsPerDocumentInitials.class, name = "initials"),
@JsonSubTypes.Type(value = SubFormFieldsPerDocumentRadio.class, name = "radio"),
@JsonSubTypes.Type(value = SubFormFieldsPerDocumentSignature.class, name = "signature"),
@JsonSubTypes.Type(value = SubFormFieldsPerDocumentText.class, name = "text"),
@JsonSubTypes.Type(value = SubFormFieldsPerDocumentTextMerge.class, name = "text-merge"),
})
public class SubFormFieldsPerDocumentHyperlink extends SubFormFieldsPerDocumentBase {
public static final String JSON_PROPERTY_TYPE = "type";
private String type = "hyperlink";
public static final String JSON_PROPERTY_CONTENT = "content";
private String content;
public static final String JSON_PROPERTY_CONTENT_URL = "content_url";
private String contentUrl;
public SubFormFieldsPerDocumentHyperlink() {
}
public SubFormFieldsPerDocumentHyperlink type(String type) {
this.type = type;
return this;
}
/**
* A hyperlink field. Use the `SubFormFieldsPerDocumentHyperlink` class.
* @return type
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "A hyperlink field. Use the `SubFormFieldsPerDocumentHyperlink` class.")
@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 SubFormFieldsPerDocumentHyperlink content(String content) {
this.content = content;
return this;
}
/**
* Link Text.
* @return content
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "Link Text.")
@JsonProperty(JSON_PROPERTY_CONTENT)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getContent() {
return content;
}
@JsonProperty(JSON_PROPERTY_CONTENT)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setContent(String content) {
this.content = content;
}
public SubFormFieldsPerDocumentHyperlink contentUrl(String contentUrl) {
this.contentUrl = contentUrl;
return this;
}
/**
* Link URL.
* @return contentUrl
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "Link URL.")
@JsonProperty(JSON_PROPERTY_CONTENT_URL)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getContentUrl() {
return contentUrl;
}
@JsonProperty(JSON_PROPERTY_CONTENT_URL)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setContentUrl(String contentUrl) {
this.contentUrl = contentUrl;
}
/**
* Return true if this SubFormFieldsPerDocumentHyperlink object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SubFormFieldsPerDocumentHyperlink subFormFieldsPerDocumentHyperlink = (SubFormFieldsPerDocumentHyperlink) o;
return Objects.equals(this.type, subFormFieldsPerDocumentHyperlink.type) &&
Objects.equals(this.content, subFormFieldsPerDocumentHyperlink.content) &&
Objects.equals(this.contentUrl, subFormFieldsPerDocumentHyperlink.contentUrl) &&
super.equals(o);
}
@Override
public int hashCode() {
return Objects.hash(type, content, contentUrl, super.hashCode());
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SubFormFieldsPerDocumentHyperlink {\n");
sb.append(" ").append(toIndentedString(super.toString())).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" content: ").append(toIndentedString(content)).append("\n");
sb.append(" contentUrl: ").append(toIndentedString(contentUrl)).append("\n");
sb.append("}");
return sb.toString();
}
public Map createFormData() throws ApiException {
Map map = new HashMap<>();
boolean fileTypeFound = false;
map.putAll(super.createFormData());
try {
if (type != null) {
if (isFileTypeOrListOfFiles(type)) {
fileTypeFound = true;
}
if (type.getClass().equals(java.io.File.class) ||
type.getClass().equals(Integer.class) ||
type.getClass().equals(String.class) ) {
map.put("type", type);
} else if (isListOfFile(type)) {
for(int i = 0; i< getListSize(type); i++) {
map.put("type[" + i + "]", getFromList(type, i));
}
}
else {
map.put("type", JSON.getDefault().getMapper().writeValueAsString(type));
}
}
if (content != null) {
if (isFileTypeOrListOfFiles(content)) {
fileTypeFound = true;
}
if (content.getClass().equals(java.io.File.class) ||
content.getClass().equals(Integer.class) ||
content.getClass().equals(String.class) ) {
map.put("content", content);
} else if (isListOfFile(content)) {
for(int i = 0; i< getListSize(content); i++) {
map.put("content[" + i + "]", getFromList(content, i));
}
}
else {
map.put("content", JSON.getDefault().getMapper().writeValueAsString(content));
}
}
if (contentUrl != null) {
if (isFileTypeOrListOfFiles(contentUrl)) {
fileTypeFound = true;
}
if (contentUrl.getClass().equals(java.io.File.class) ||
contentUrl.getClass().equals(Integer.class) ||
contentUrl.getClass().equals(String.class) ) {
map.put("content_url", contentUrl);
} else if (isListOfFile(contentUrl)) {
for(int i = 0; i< getListSize(contentUrl); i++) {
map.put("content_url[" + i + "]", getFromList(contentUrl, i));
}
}
else {
map.put("content_url", JSON.getDefault().getMapper().writeValueAsString(contentUrl));
}
}
} catch (Exception e) {
throw new ApiException(e);
}
return fileTypeFound ? map : new HashMap<>();
}
private boolean isFileTypeOrListOfFiles(Object obj) throws Exception {
return obj.getClass().equals(java.io.File.class) || isListOfFile(obj);
}
private boolean isListOfFile(Object obj) throws Exception {
return obj instanceof java.util.List && !isListEmpty(obj) && getFromList(obj, 0) instanceof java.io.File;
}
private boolean isListEmpty(Object obj) throws Exception {
return (boolean) Class.forName(java.util.List.class.getName()).getMethod("isEmpty").invoke(obj);
}
private Object getFromList(Object obj, int index) throws Exception {
return Class.forName(java.util.List.class.getName()).getMethod("get", int.class).invoke(obj, index);
}
private int getListSize(Object obj) throws Exception {
return (int) Class.forName(java.util.List.class.getName()).getMethod("size").invoke(obj);
}
/**
* 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 ");
}
static {
// Initialize and register the discriminator mappings.
Map> mappings = new HashMap>();
mappings.put("checkbox", SubFormFieldsPerDocumentCheckbox.class);
mappings.put("checkbox-merge", SubFormFieldsPerDocumentCheckboxMerge.class);
mappings.put("date_signed", SubFormFieldsPerDocumentDateSigned.class);
mappings.put("dropdown", SubFormFieldsPerDocumentDropdown.class);
mappings.put("hyperlink", SubFormFieldsPerDocumentHyperlink.class);
mappings.put("initials", SubFormFieldsPerDocumentInitials.class);
mappings.put("radio", SubFormFieldsPerDocumentRadio.class);
mappings.put("signature", SubFormFieldsPerDocumentSignature.class);
mappings.put("text", SubFormFieldsPerDocumentText.class);
mappings.put("text-merge", SubFormFieldsPerDocumentTextMerge.class);
mappings.put("SubFormFieldsPerDocumentHyperlink", SubFormFieldsPerDocumentHyperlink.class);
JSON.registerDiscriminator(SubFormFieldsPerDocumentHyperlink.class, "type", mappings);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy