All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.groupdocs.sdk.model.SignatureDocumentFieldInfo Maven / Gradle / Ivy

/**
 *  Copyright 2012 GroupDocs.
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */
package com.groupdocs.sdk.model;

import java.util.*;
import com.groupdocs.sdk.model.SignatureDocumentFieldLocationInfo;
/**
 * 
 * 

* NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. * */ public class SignatureDocumentFieldInfo { private String id = null; private String name = null; private Boolean mandatory = null; private Double signatureFieldId = null; private List locations = new ArrayList(); private Integer fieldType = null; private String acceptableValues = null; private String defaultValue = null; private String tooltip = null; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public Boolean getMandatory() { return mandatory; } public void setMandatory(Boolean mandatory) { this.mandatory = mandatory; } public Double getSignatureFieldId() { return signatureFieldId; } public void setSignatureFieldId(Double signatureFieldId) { this.signatureFieldId = signatureFieldId; } public List getLocations() { return locations; } public void setLocations(List locations) { this.locations = locations; } public Integer getFieldType() { return fieldType; } public void setFieldType(Integer fieldType) { this.fieldType = fieldType; } public String getAcceptableValues() { return acceptableValues; } public void setAcceptableValues(String acceptableValues) { this.acceptableValues = acceptableValues; } public String getDefaultValue() { return defaultValue; } public void setDefaultValue(String defaultValue) { this.defaultValue = defaultValue; } public String getTooltip() { return tooltip; } public void setTooltip(String tooltip) { this.tooltip = tooltip; } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SignatureDocumentFieldInfo {\n"); sb.append(" id: ").append(id).append("\n"); sb.append(" name: ").append(name).append("\n"); sb.append(" mandatory: ").append(mandatory).append("\n"); sb.append(" signatureFieldId: ").append(signatureFieldId).append("\n"); sb.append(" locations: ").append(locations).append("\n"); sb.append(" fieldType: ").append(fieldType).append("\n"); sb.append(" acceptableValues: ").append(acceptableValues).append("\n"); sb.append(" defaultValue: ").append(defaultValue).append("\n"); sb.append(" tooltip: ").append(tooltip).append("\n"); sb.append("}\n"); return sb.toString(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy