
com.groupdocs.sdk.model.SignatureSignFieldSettingsInfo Maven / Gradle / Ivy
Show all versions of groupdocs-java-client Show documentation
/**
* 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.SignatureSignFieldLocationSettingsInfo;
/**
*
*
* NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.
*
*/
public class SignatureSignFieldSettingsInfo {
private Integer fieldType = null;
private String data = null;
private Integer minGraphSizeW = null;
private Integer minGraphSizeH = null;
private List locations = new ArrayList();
public Integer getFieldType() {
return fieldType;
}
public void setFieldType(Integer fieldType) {
this.fieldType = fieldType;
}
public String getData() {
return data;
}
public void setData(String data) {
this.data = data;
}
public Integer getMinGraphSizeW() {
return minGraphSizeW;
}
public void setMinGraphSizeW(Integer minGraphSizeW) {
this.minGraphSizeW = minGraphSizeW;
}
public Integer getMinGraphSizeH() {
return minGraphSizeH;
}
public void setMinGraphSizeH(Integer minGraphSizeH) {
this.minGraphSizeH = minGraphSizeH;
}
public List getLocations() {
return locations;
}
public void setLocations(List locations) {
this.locations = locations;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SignatureSignFieldSettingsInfo {\n");
sb.append(" fieldType: ").append(fieldType).append("\n");
sb.append(" data: ").append(data).append("\n");
sb.append(" minGraphSizeW: ").append(minGraphSizeW).append("\n");
sb.append(" minGraphSizeH: ").append(minGraphSizeH).append("\n");
sb.append(" locations: ").append(locations).append("\n");
sb.append("}\n");
return sb.toString();
}
}