com.groupdocs.sdk.model.SignatureDocumentFieldLocationInfo 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 SignatureDocumentFieldLocationInfo {
private String id = null;
private String fieldId = 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;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getFieldId() {
return fieldId;
}
public void setFieldId(String fieldId) {
this.fieldId = fieldId;
}
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;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SignatureDocumentFieldLocationInfo {\n");
sb.append(" id: ").append(id).append("\n");
sb.append(" fieldId: ").append(fieldId).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("}\n");
return sb.toString();
}
}