com.groupdocs.sdk.model.SignatureFormFieldLocationInfo 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 SignatureFormFieldLocationInfo {
private String id = null;
private String documentGuid = null;
private String fieldGuid = null;
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 Integer align = null;
private Integer order = null;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getDocumentGuid() {
return documentGuid;
}
public void setDocumentGuid(String documentGuid) {
this.documentGuid = documentGuid;
}
public String getFieldGuid() {
return fieldGuid;
}
public void setFieldGuid(String fieldGuid) {
this.fieldGuid = fieldGuid;
}
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 Integer getAlign() {
return align;
}
public void setAlign(Integer align) {
this.align = align;
}
public Integer getOrder() {
return order;
}
public void setOrder(Integer order) {
this.order = order;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SignatureFormFieldLocationInfo {\n");
sb.append(" id: ").append(id).append("\n");
sb.append(" documentGuid: ").append(documentGuid).append("\n");
sb.append(" fieldGuid: ").append(fieldGuid).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(" 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(" align: ").append(align).append("\n");
sb.append(" order: ").append(order).append("\n");
sb.append("}\n");
return sb.toString();
}
}