com.groupdocs.sdk.model.StorageInfoResult 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 StorageInfoResult {
private Long total_space = null;
private Long avail_space = null;
private Integer doc_credits = null;
private Integer avail_credits = null;
private Integer total_documents = null;
private Long avail_documents = null;
private Long maxViewingFileSize = null;
public Long getTotal_space() {
return total_space;
}
public void setTotal_space(Long total_space) {
this.total_space = total_space;
}
public Long getAvail_space() {
return avail_space;
}
public void setAvail_space(Long avail_space) {
this.avail_space = avail_space;
}
public Integer getDoc_credits() {
return doc_credits;
}
public void setDoc_credits(Integer doc_credits) {
this.doc_credits = doc_credits;
}
public Integer getAvail_credits() {
return avail_credits;
}
public void setAvail_credits(Integer avail_credits) {
this.avail_credits = avail_credits;
}
public Integer getTotal_documents() {
return total_documents;
}
public void setTotal_documents(Integer total_documents) {
this.total_documents = total_documents;
}
public Long getAvail_documents() {
return avail_documents;
}
public void setAvail_documents(Long avail_documents) {
this.avail_documents = avail_documents;
}
public Long getMaxViewingFileSize() {
return maxViewingFileSize;
}
public void setMaxViewingFileSize(Long maxViewingFileSize) {
this.maxViewingFileSize = maxViewingFileSize;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class StorageInfoResult {\n");
sb.append(" total_space: ").append(total_space).append("\n");
sb.append(" avail_space: ").append(avail_space).append("\n");
sb.append(" doc_credits: ").append(doc_credits).append("\n");
sb.append(" avail_credits: ").append(avail_credits).append("\n");
sb.append(" total_documents: ").append(total_documents).append("\n");
sb.append(" avail_documents: ").append(avail_documents).append("\n");
sb.append(" maxViewingFileSize: ").append(maxViewingFileSize).append("\n");
sb.append("}\n");
return sb.toString();
}
}