com.groupdocs.sdk.model.TemplateInfo 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 TemplateInfo {
private String name = null;
private Integer field_count = null;
private Long size = null;
private String fileType = null;
private Integer dependent_questionnaires_count = null;
private Long upload_time = null;
private Double id = null;
private String guid = null;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Integer getField_count() {
return field_count;
}
public void setField_count(Integer field_count) {
this.field_count = field_count;
}
public Long getSize() {
return size;
}
public void setSize(Long size) {
this.size = size;
}
public String getFileType() {
return fileType;
}
public void setFileType(String fileType) {
this.fileType = fileType;
}
public Integer getDependent_questionnaires_count() {
return dependent_questionnaires_count;
}
public void setDependent_questionnaires_count(Integer dependent_questionnaires_count) {
this.dependent_questionnaires_count = dependent_questionnaires_count;
}
public Long getUpload_time() {
return upload_time;
}
public void setUpload_time(Long upload_time) {
this.upload_time = upload_time;
}
public Double getId() {
return id;
}
public void setId(Double id) {
this.id = id;
}
public String getGuid() {
return guid;
}
public void setGuid(String guid) {
this.guid = guid;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TemplateInfo {\n");
sb.append(" name: ").append(name).append("\n");
sb.append(" field_count: ").append(field_count).append("\n");
sb.append(" size: ").append(size).append("\n");
sb.append(" fileType: ").append(fileType).append("\n");
sb.append(" dependent_questionnaires_count: ").append(dependent_questionnaires_count).append("\n");
sb.append(" upload_time: ").append(upload_time).append("\n");
sb.append(" id: ").append(id).append("\n");
sb.append(" guid: ").append(guid).append("\n");
sb.append("}\n");
return sb.toString();
}
}