teloxide/src/types/audio.rs
Waffle 393f6ee7a4 Cleanup setters in types::*
- Remove useless setters for types which are only returned from telegam
- Add `const` on setters (where possible)
- Make `Poll::{open_period,close_date}` public
2021-01-26 15:35:08 +03:00

82 lines
2.5 KiB
Rust

use mime::Mime;
use serde::{Deserialize, Serialize};
use crate::types::PhotoSize;
/// This object represents an audio file to be treated as music by the Telegram
/// clients.
///
/// [The official docs](https://core.telegram.org/bots/api#audio).
#[serde_with_macros::skip_serializing_none]
#[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)]
pub struct Audio {
/// An identifier for this file.
pub file_id: String,
/// Unique identifier for this file, which is supposed to be the same over
/// time and for different bots. Can't be used to download or reuse the
/// file.
pub file_unique_id: String,
/// A duration of the audio in seconds as defined by a sender.
pub duration: u32,
/// A performer of the audio as defined by a sender or by audio tags.
pub performer: Option<String>,
/// A title of the audio as defined by sender or by audio tags.
pub title: Option<String>,
/// A MIME type of the file as defined by a sender.
#[serde(with = "crate::types::non_telegram_types::mime::opt_deser")]
pub mime_type: Option<Mime>,
/// A size of a file.
pub file_size: Option<u32>,
/// A thumbnail of the album cover to which the music file belongs.
pub thumb: Option<PhotoSize>,
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn deserialize() {
let json = r#"{
"file_id":"id",
"file_unique_id":"",
"duration":60,
"performer":"Performer",
"title":"Title",
"mime_type":"application/zip",
"file_size":123456,
"thumb":{
"file_id":"id",
"file_unique_id":"",
"width":320,
"height":320,
"file_size":3452
}
}"#;
let expected = Audio {
file_id: "id".to_string(),
file_unique_id: "".to_string(),
duration: 60,
performer: Some("Performer".to_string()),
title: Some("Title".to_string()),
mime_type: Some("application/zip".parse().unwrap()),
file_size: Some(123_456),
thumb: Some(PhotoSize {
file_id: "id".to_string(),
file_unique_id: "".to_string(),
width: 320,
height: 320,
file_size: Some(3452),
}),
};
let actual = serde_json::from_str::<Audio>(&json).unwrap();
assert_eq!(actual, expected)
}
}