/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You 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 org.apache.camel.component.telegram.model; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; /** * Contains information about a general file. */ @JsonIgnoreProperties(ignoreUnknown = true) public class IncomingDocument { @JsonProperty("file_id") private String fileId; @JsonProperty("thumb") private IncomingPhotoSize thumb; @JsonProperty("file_name") private String fileName; @JsonProperty("mime_type") private String mimeType; @JsonProperty("file_size") private Long fileSize; public IncomingDocument() { } public String getFileId() { return fileId; } public void setFileId(String fileId) { this.fileId = fileId; } public IncomingPhotoSize getThumb() { return thumb; } public void setThumb(IncomingPhotoSize thumb) { this.thumb = thumb; } public String getFileName() { return fileName; } public void setFileName(String fileName) { this.fileName = fileName; } public String getMimeType() { return mimeType; } public void setMimeType(String mimeType) { this.mimeType = mimeType; } public Long getFileSize() { return fileSize; } public void setFileSize(Long fileSize) { this.fileSize = fileSize; } @Override public String toString() { final StringBuilder sb = new StringBuilder("IncomingDocument{"); sb.append("fileId='").append(fileId).append('\''); sb.append(", thumbSize='").append(thumb).append('\''); sb.append(", fileName='").append(fileName).append('\''); sb.append(", mimeType='").append(mimeType).append('\''); sb.append(", fileSize=").append(fileSize); sb.append('}'); return sb.toString(); } }