com.groupdocs.sdk.model.SignatureFormFieldSettingsInfo 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;
/**
*
*
* NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.
*
*/
public class SignatureFormFieldSettingsInfo {
private String name = null;
private Boolean mandatory = null;
private Integer order = null;
private Integer page = null;
private Double locationX = null;
private Double locationY = null;
private Double locationWidth = null;
private Double locationHeight = null;
private String regularExpression = null;
private String fontName = null;
private String fontColor = null;
private Double fontSize = null;
private Boolean fontBold = null;
private Boolean fontItalic = null;
private Boolean fontUnderline = null;
private Boolean forceNewField = null;
private String acceptableValues = null;
private String defaultValue = null;
private String tooltip = null;
private Integer align = null;
private String guidanceText = null;
private String groupName = null;
private Integer fieldType = null;
private String settings = null;
private Integer pageWidth = null;
private Integer pageHeight = null;
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 Integer getOrder() {
return order;
}
public void setOrder(Integer order) {
this.order = order;
}
public Integer getPage() {
return page;
}
public void setPage(Integer page) {
this.page = page;
}
public Double getLocationX() {
return locationX;
}
public void setLocationX(Double locationX) {
this.locationX = locationX;
}
public Double getLocationY() {
return locationY;
}
public void setLocationY(Double locationY) {
this.locationY = locationY;
}
public Double getLocationWidth() {
return locationWidth;
}
public void setLocationWidth(Double locationWidth) {
this.locationWidth = locationWidth;
}
public Double getLocationHeight() {
return locationHeight;
}
public void setLocationHeight(Double locationHeight) {
this.locationHeight = locationHeight;
}
public String getRegularExpression() {
return regularExpression;
}
public void setRegularExpression(String regularExpression) {
this.regularExpression = regularExpression;
}
public String getFontName() {
return fontName;
}
public void setFontName(String fontName) {
this.fontName = fontName;
}
public String getFontColor() {
return fontColor;
}
public void setFontColor(String fontColor) {
this.fontColor = fontColor;
}
public Double getFontSize() {
return fontSize;
}
public void setFontSize(Double fontSize) {
this.fontSize = fontSize;
}
public Boolean getFontBold() {
return fontBold;
}
public void setFontBold(Boolean fontBold) {
this.fontBold = fontBold;
}
public Boolean getFontItalic() {
return fontItalic;
}
public void setFontItalic(Boolean fontItalic) {
this.fontItalic = fontItalic;
}
public Boolean getFontUnderline() {
return fontUnderline;
}
public void setFontUnderline(Boolean fontUnderline) {
this.fontUnderline = fontUnderline;
}
public Boolean getForceNewField() {
return forceNewField;
}
public void setForceNewField(Boolean forceNewField) {
this.forceNewField = forceNewField;
}
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;
}
public Integer getAlign() {
return align;
}
public void setAlign(Integer align) {
this.align = align;
}
public String getGuidanceText() {
return guidanceText;
}
public void setGuidanceText(String guidanceText) {
this.guidanceText = guidanceText;
}
public String getGroupName() {
return groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
}
public Integer getFieldType() {
return fieldType;
}
public void setFieldType(Integer fieldType) {
this.fieldType = fieldType;
}
public String getSettings() {
return settings;
}
public void setSettings(String settings) {
this.settings = settings;
}
public Integer getPageWidth() {
return pageWidth;
}
public void setPageWidth(Integer pageWidth) {
this.pageWidth = pageWidth;
}
public Integer getPageHeight() {
return pageHeight;
}
public void setPageHeight(Integer pageHeight) {
this.pageHeight = pageHeight;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SignatureFormFieldSettingsInfo {\n");
sb.append(" name: ").append(name).append("\n");
sb.append(" mandatory: ").append(mandatory).append("\n");
sb.append(" order: ").append(order).append("\n");
sb.append(" page: ").append(page).append("\n");
sb.append(" locationX: ").append(locationX).append("\n");
sb.append(" locationY: ").append(locationY).append("\n");
sb.append(" locationWidth: ").append(locationWidth).append("\n");
sb.append(" locationHeight: ").append(locationHeight).append("\n");
sb.append(" regularExpression: ").append(regularExpression).append("\n");
sb.append(" fontName: ").append(fontName).append("\n");
sb.append(" fontColor: ").append(fontColor).append("\n");
sb.append(" fontSize: ").append(fontSize).append("\n");
sb.append(" fontBold: ").append(fontBold).append("\n");
sb.append(" fontItalic: ").append(fontItalic).append("\n");
sb.append(" fontUnderline: ").append(fontUnderline).append("\n");
sb.append(" forceNewField: ").append(forceNewField).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(" align: ").append(align).append("\n");
sb.append(" guidanceText: ").append(guidanceText).append("\n");
sb.append(" groupName: ").append(groupName).append("\n");
sb.append(" fieldType: ").append(fieldType).append("\n");
sb.append(" settings: ").append(settings).append("\n");
sb.append(" pageWidth: ").append(pageWidth).append("\n");
sb.append(" pageHeight: ").append(pageHeight).append("\n");
sb.append("}\n");
return sb.toString();
}
}