com.groupdocs.sdk.model.SignatureEnvelopeFieldLocationSettingsInfo 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 SignatureEnvelopeFieldLocationSettingsInfo {
private Integer page = null;
private Double locationX = null;
private Double locationY = null;
private Double locationWidth = null;
private Double locationHeight = 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 Integer align = null;
private Integer pageWidth = null;
private Integer pageHeight = null;
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 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 Integer getAlign() {
return align;
}
public void setAlign(Integer align) {
this.align = align;
}
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 SignatureEnvelopeFieldLocationSettingsInfo {\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(" 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(" align: ").append(align).append("\n");
sb.append(" pageWidth: ").append(pageWidth).append("\n");
sb.append(" pageHeight: ").append(pageHeight).append("\n");
sb.append("}\n");
return sb.toString();
}
}