/** * 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; /** * ontains information about an audio file. */ @JsonIgnoreProperties(ignoreUnknown = true) public class IncomingAudio { private static final long serialVersionUID = 2716544815581270395L; @JsonProperty("file_id") private String fileId; @JsonProperty("duration") private Integer durationSeconds; private String performer; private String title; @JsonProperty("mime_type") private String mimeType; @JsonProperty("file_size") private Long fileSize; public IncomingAudio() { } public String getFileId() { return fileId; } public void setFileId(String fileId) { this.fileId = fileId; } public Integer getDurationSeconds() { return durationSeconds; } public void setDurationSeconds(Integer durationSeconds) { this.durationSeconds = durationSeconds; } public String getPerformer() { return performer; } public void setPerformer(String performer) { this.performer = performer; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } 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("IncomingAudio{"); sb.append("fileId='").append(fileId).append('\''); sb.append(", durationSeconds=").append(durationSeconds); sb.append(", performer='").append(performer).append('\''); sb.append(", title='").append(title).append('\''); sb.append(", mimeType='").append(mimeType).append('\''); sb.append(", fileSize=").append(fileSize); sb.append('}'); return sb.toString(); } }