diff --git a/crates/teloxide-core/src/types/bot_command.rs b/crates/teloxide-core/src/types/bot_command.rs index cb6d9c6e..cfc57179 100644 --- a/crates/teloxide-core/src/types/bot_command.rs +++ b/crates/teloxide-core/src/types/bot_command.rs @@ -3,6 +3,7 @@ use serde::{Deserialize, Serialize}; /// This object represents a bot command. /// /// [The official docs](https://core.telegram.org/bots/api#botcommand). +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)] pub struct BotCommand { /// Text of the command, 1-32 characters. diff --git a/crates/teloxide-core/src/types/callback_game.rs b/crates/teloxide-core/src/types/callback_game.rs index 0fd9a9b0..1c1e0d3a 100644 --- a/crates/teloxide-core/src/types/callback_game.rs +++ b/crates/teloxide-core/src/types/callback_game.rs @@ -8,5 +8,6 @@ use serde::{Deserialize, Serialize}; /// Use [@Botfather] to set up your game. /// /// [@Botfather]: https://t.me/botfather +#[serde_with_macros::skip_serializing_none] #[derive(Copy, Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)] pub struct CallbackGame; diff --git a/crates/teloxide-core/src/types/chat_administrator_rights.rs b/crates/teloxide-core/src/types/chat_administrator_rights.rs index b00da3d7..a0855f88 100644 --- a/crates/teloxide-core/src/types/chat_administrator_rights.rs +++ b/crates/teloxide-core/src/types/chat_administrator_rights.rs @@ -1,6 +1,7 @@ use serde::{Deserialize, Serialize}; /// Represents the rights of an administrator in a chat. +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)] pub struct ChatAdministratorRights { /// `true`, if the user's presence in the chat is hidden diff --git a/crates/teloxide-core/src/types/chat_invite_link.rs b/crates/teloxide-core/src/types/chat_invite_link.rs index 190b0074..4523968b 100644 --- a/crates/teloxide-core/src/types/chat_invite_link.rs +++ b/crates/teloxide-core/src/types/chat_invite_link.rs @@ -3,6 +3,7 @@ use serde::{Deserialize, Serialize}; use crate::types::User; +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)] pub struct ChatInviteLink { /// The invite link. If the link was created by another chat administrator, diff --git a/crates/teloxide-core/src/types/chat_join_request.rs b/crates/teloxide-core/src/types/chat_join_request.rs index 455d922e..9f9d9a6d 100644 --- a/crates/teloxide-core/src/types/chat_join_request.rs +++ b/crates/teloxide-core/src/types/chat_join_request.rs @@ -4,6 +4,7 @@ use serde::{Deserialize, Serialize}; use crate::types::{Chat, ChatInviteLink, User}; /// Represents a join request sent to a chat. +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, PartialEq, Serialize, Deserialize)] pub struct ChatJoinRequest { /// Chat to which the request was sent diff --git a/crates/teloxide-core/src/types/chat_location.rs b/crates/teloxide-core/src/types/chat_location.rs index fbd2b412..2c823d08 100644 --- a/crates/teloxide-core/src/types/chat_location.rs +++ b/crates/teloxide-core/src/types/chat_location.rs @@ -3,6 +3,7 @@ use serde::{Deserialize, Serialize}; use crate::types::Location; /// Represents a location to which a chat is connected. +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, PartialEq, Serialize, Deserialize)] pub struct ChatLocation { /// The location to which the supergroup is connected. Can't be a live diff --git a/crates/teloxide-core/src/types/chat_member.rs b/crates/teloxide-core/src/types/chat_member.rs index 3aff631d..8b91b03b 100644 --- a/crates/teloxide-core/src/types/chat_member.rs +++ b/crates/teloxide-core/src/types/chat_member.rs @@ -7,6 +7,7 @@ use crate::types::{UntilDate, User}; /// This object contains information about one member of the chat. /// /// [The official docs](https://core.telegram.org/bots/api#chatmember). +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)] pub struct ChatMember { /// Information about the user. @@ -32,6 +33,7 @@ pub enum ChatMemberKind { } /// Owner of the group. This struct is part of the [`ChatMemberKind`] enum. +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)] pub struct Owner { /// Custom title for this user. @@ -43,6 +45,7 @@ pub struct Owner { /// Administrator of the group. This struct is part of the [`ChatMemberKind`] /// enum. +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)] pub struct Administrator { /// Custom title for this user. @@ -104,6 +107,7 @@ pub struct Administrator { /// User, restricted in the group. This struct is part of the [`ChatMemberKind`] /// enum. +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)] pub struct Restricted { /// Date when restrictions will be lifted for this user. @@ -148,6 +152,7 @@ pub struct Restricted { /// User that was banned in the chat and can't return to it or view chat /// messages. This struct is part of the [`ChatMemberKind`] enum. +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)] pub struct Banned { /// Date when restrictions will be lifted for this user. diff --git a/crates/teloxide-core/src/types/chat_member_updated.rs b/crates/teloxide-core/src/types/chat_member_updated.rs index 61ec402d..0d295419 100644 --- a/crates/teloxide-core/src/types/chat_member_updated.rs +++ b/crates/teloxide-core/src/types/chat_member_updated.rs @@ -3,6 +3,7 @@ use serde::{Deserialize, Serialize}; use crate::types::{Chat, ChatInviteLink, ChatMember, User}; +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, PartialEq, Serialize, Deserialize)] pub struct ChatMemberUpdated { /// Chat the user belongs to diff --git a/crates/teloxide-core/src/types/chat_photo.rs b/crates/teloxide-core/src/types/chat_photo.rs index 3ebd2bb6..0d6936e4 100644 --- a/crates/teloxide-core/src/types/chat_photo.rs +++ b/crates/teloxide-core/src/types/chat_photo.rs @@ -3,6 +3,7 @@ use serde::{Deserialize, Serialize}; /// This object represents a chat photo. /// /// [The official docs](https://core.telegram.org/bots/api#chatphoto). +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)] pub struct ChatPhoto { /// A file identifier of small (160x160) chat photo. This file_id can be diff --git a/crates/teloxide-core/src/types/encrypted_passport_element.rs b/crates/teloxide-core/src/types/encrypted_passport_element.rs index 3d392f57..63e097c8 100644 --- a/crates/teloxide-core/src/types/encrypted_passport_element.rs +++ b/crates/teloxide-core/src/types/encrypted_passport_element.rs @@ -6,6 +6,7 @@ use super::PassportFile; /// shared with the bot by the user. /// /// [The official docs](https://core.telegram.org/bots/api#encryptedpassportelement). +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)] pub struct EncryptedPassportElement { /// Base64-encoded element hash for using in diff --git a/crates/teloxide-core/src/types/game_high_score.rs b/crates/teloxide-core/src/types/game_high_score.rs index 059686c1..22220a51 100644 --- a/crates/teloxide-core/src/types/game_high_score.rs +++ b/crates/teloxide-core/src/types/game_high_score.rs @@ -5,6 +5,7 @@ use crate::types::user::User; /// This object represents one row of the high scores table for a game. /// /// [The official docs](https://core.telegram.org/bots/api#gamehighscore). +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)] pub struct GameHighScore { /// Position in high score table for the game. diff --git a/crates/teloxide-core/src/types/inline_keyboard_button.rs b/crates/teloxide-core/src/types/inline_keyboard_button.rs index 4c7d0e95..8d269fed 100644 --- a/crates/teloxide-core/src/types/inline_keyboard_button.rs +++ b/crates/teloxide-core/src/types/inline_keyboard_button.rs @@ -4,6 +4,7 @@ use serde::{Deserialize, Serialize}; /// This object represents one button of an inline keyboard. /// /// [The official docs](https://core.telegram.org/bots/api#inlinekeyboardbutton). +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)] pub struct InlineKeyboardButton { /// Label text on the button. diff --git a/crates/teloxide-core/src/types/inline_keyboard_markup.rs b/crates/teloxide-core/src/types/inline_keyboard_markup.rs index db92ae4b..3221fb08 100644 --- a/crates/teloxide-core/src/types/inline_keyboard_markup.rs +++ b/crates/teloxide-core/src/types/inline_keyboard_markup.rs @@ -11,6 +11,7 @@ use crate::types::InlineKeyboardButton; /// [The official docs](https://core.telegram.org/bots/api#inlinekeyboardmarkup). /// /// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize, Default)] pub struct InlineKeyboardMarkup { /// Array of button rows, each represented by an array of diff --git a/crates/teloxide-core/src/types/input_file.rs b/crates/teloxide-core/src/types/input_file.rs index 00948f8b..97dd96db 100644 --- a/crates/teloxide-core/src/types/input_file.rs +++ b/crates/teloxide-core/src/types/input_file.rs @@ -31,6 +31,7 @@ use crate::types::InputSticker; /// This object represents the contents of a file to be uploaded. /// /// [The official docs](https://core.telegram.org/bots/api#inputfile). +#[serde_with_macros::skip_serializing_none] #[derive(Debug, Clone)] pub struct InputFile { id: OnceCell>, diff --git a/crates/teloxide-core/src/types/invoice.rs b/crates/teloxide-core/src/types/invoice.rs index b9f2f5b6..4d2a3915 100644 --- a/crates/teloxide-core/src/types/invoice.rs +++ b/crates/teloxide-core/src/types/invoice.rs @@ -3,6 +3,7 @@ use serde::{Deserialize, Serialize}; /// This object contains basic information about an invoice. /// /// [The official docs](https://core.telegram.org/bots/api#invoice). +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)] pub struct Invoice { /// Product name. diff --git a/crates/teloxide-core/src/types/label_price.rs b/crates/teloxide-core/src/types/label_price.rs index 28cf9b30..1b5d7092 100644 --- a/crates/teloxide-core/src/types/label_price.rs +++ b/crates/teloxide-core/src/types/label_price.rs @@ -3,6 +3,7 @@ use serde::{Deserialize, Serialize}; /// This object represents a portion of the price for goods or services. /// /// [The official docs](https://core.telegram.org/bots/api#labeledprice). +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)] pub struct LabeledPrice { /// Portion label. diff --git a/crates/teloxide-core/src/types/location.rs b/crates/teloxide-core/src/types/location.rs index eb417c52..9931f756 100644 --- a/crates/teloxide-core/src/types/location.rs +++ b/crates/teloxide-core/src/types/location.rs @@ -1,6 +1,7 @@ use serde::{Deserialize, Serialize}; /// This object represents a point on the map. +#[serde_with_macros::skip_serializing_none] #[derive(Copy, Clone, Debug, PartialEq, Serialize, Deserialize)] pub struct Location { /// Longitude as defined by sender. diff --git a/crates/teloxide-core/src/types/mask_position.rs b/crates/teloxide-core/src/types/mask_position.rs index fd736dcf..ec5955d5 100644 --- a/crates/teloxide-core/src/types/mask_position.rs +++ b/crates/teloxide-core/src/types/mask_position.rs @@ -4,6 +4,7 @@ use serde::{Deserialize, Serialize}; /// default. /// /// [The official docs](https://core.telegram.org/bots/api#maskposition). +#[serde_with_macros::skip_serializing_none] #[derive(Copy, Clone, Debug, PartialEq, Serialize, Deserialize)] pub struct MaskPosition { /// The part of the face relative to which the mask should be placed. One diff --git a/crates/teloxide-core/src/types/me.rs b/crates/teloxide-core/src/types/me.rs index bea15ca3..7053fd7c 100644 --- a/crates/teloxide-core/src/types/me.rs +++ b/crates/teloxide-core/src/types/me.rs @@ -7,6 +7,7 @@ use crate::types::User; /// Returned only in [`GetMe`]. /// /// [`GetMe`]: crate::payloads::GetMe +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)] pub struct Me { #[serde(flatten)] diff --git a/crates/teloxide-core/src/types/message_auto_delete_timer_changed.rs b/crates/teloxide-core/src/types/message_auto_delete_timer_changed.rs index 0e24be5a..ce48ed95 100644 --- a/crates/teloxide-core/src/types/message_auto_delete_timer_changed.rs +++ b/crates/teloxide-core/src/types/message_auto_delete_timer_changed.rs @@ -2,6 +2,7 @@ use serde::{Deserialize, Serialize}; /// This object represents a service message about a change in auto-delete timer /// settings. +#[serde_with_macros::skip_serializing_none] #[derive(Copy, Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)] pub struct MessageAutoDeleteTimerChanged { /// New auto-delete time for messages in the chat diff --git a/crates/teloxide-core/src/types/message_entity.rs b/crates/teloxide-core/src/types/message_entity.rs index 98f90615..2dfdd6d1 100644 --- a/crates/teloxide-core/src/types/message_entity.rs +++ b/crates/teloxide-core/src/types/message_entity.rs @@ -9,6 +9,7 @@ use crate::types::{User, UserId}; /// For example, hashtags, usernames, URLs, etc. /// /// [The official docs](https://core.telegram.org/bots/api#messageentity). +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)] pub struct MessageEntity { #[serde(flatten)] diff --git a/crates/teloxide-core/src/types/order_info.rs b/crates/teloxide-core/src/types/order_info.rs index a512b7ac..094f6b72 100644 --- a/crates/teloxide-core/src/types/order_info.rs +++ b/crates/teloxide-core/src/types/order_info.rs @@ -5,6 +5,7 @@ use crate::types::ShippingAddress; /// This object represents information about an order. /// /// [The official docs](https://core.telegram.org/bots/api#orderinfo). +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize, Default)] pub struct OrderInfo { /// User's name. diff --git a/crates/teloxide-core/src/types/passport_data.rs b/crates/teloxide-core/src/types/passport_data.rs index 5e548f57..2fb737f2 100644 --- a/crates/teloxide-core/src/types/passport_data.rs +++ b/crates/teloxide-core/src/types/passport_data.rs @@ -6,6 +6,7 @@ use super::{EncryptedCredentials, EncryptedPassportElement}; /// user. /// /// [The official docs](https://core.telegram.org/bots/api#passportdata). +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)] pub struct PassportData { /// Array with information about documents and other Telegram Passport diff --git a/crates/teloxide-core/src/types/passport_element_error.rs b/crates/teloxide-core/src/types/passport_element_error.rs index 6769bcf2..a3b94d0f 100644 --- a/crates/teloxide-core/src/types/passport_element_error.rs +++ b/crates/teloxide-core/src/types/passport_element_error.rs @@ -4,6 +4,7 @@ use serde::{Deserialize, Serialize}; /// submitted that should be resolved by the user. /// /// [The official docs](https://core.telegram.org/bots/api#passportelementerror). +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Hash, Eq, PartialEq, Serialize, Deserialize)] pub struct PassportElementError { /// Error message. @@ -73,6 +74,7 @@ pub enum PassportElementErrorKind { /// The error is considered resolved when the field's value changes. /// /// [The official docs](https://core.telegram.org/bots/api#passportelementerrordatafield). +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Hash, Eq, PartialEq, Serialize, Deserialize)] pub struct PassportElementErrorDataField { /// The section of the user's Telegram Passport which has the error. @@ -127,6 +129,7 @@ impl PassportElementErrorDataField { /// document changes. /// /// [The official docs](https://core.telegram.org/bots/api#passportelementerrorfrontside). +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Hash, Eq, PartialEq, Serialize, Deserialize)] pub struct PassportElementErrorFrontSide { /// The section of the user's Telegram Passport which has the issue. @@ -166,6 +169,7 @@ impl PassportElementErrorFrontSide { /// document changes. /// /// [The official docs](https://core.telegram.org/bots/api#passportelementerrorreverseside). +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Hash, Eq, PartialEq, Serialize, Deserialize)] pub struct PassportElementErrorReverseSide { /// The section of the user's Telegram Passport which has the issue. @@ -204,6 +208,7 @@ impl PassportElementErrorReverseSide { /// The error is considered resolved when the file with the selfie changes. /// /// [The official docs](https://core.telegram.org/bots/api#passportelementerrorselfie). +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Hash, Eq, PartialEq, Serialize, Deserialize)] pub struct PassportElementErrorSelfie { /// The section of the user's Telegram Passport which has the issue. @@ -242,6 +247,7 @@ impl PassportElementErrorSelfie { /// changes. /// /// [The official docs](https://core.telegram.org/bots/api#passportelementerrorfile). +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Hash, Eq, PartialEq, Serialize, Deserialize)] pub struct PassportElementErrorFile { /// The section of the user's Telegram Passport which has the issue. @@ -280,6 +286,7 @@ impl PassportElementErrorFile { /// changes. /// /// [The official docs](https://core.telegram.org/bots/api#passportelementerrorfiles). +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Hash, Eq, PartialEq, Serialize, Deserialize)] pub struct PassportElementErrorFiles { /// The section of the user's Telegram Passport which has the issue. @@ -318,6 +325,7 @@ impl PassportElementErrorFiles { /// The error is considered resolved when the file changes. /// /// [The official docs](https://core.telegram.org/bots/api#passportelementerrortranslationfile). +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Hash, Eq, PartialEq, Serialize, Deserialize)] pub struct PassportElementErrorTranslationFile { /// Type of element of the user's Telegram Passport which has the @@ -357,6 +365,7 @@ impl PassportElementErrorTranslationFile { /// change. /// /// [The official docs](https://core.telegram.org/bots/api#passportelementerrortranslationfiles). +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Hash, Eq, PartialEq, Serialize, Deserialize)] pub struct PassportElementErrorTranslationFiles { /// Type of element of the user's Telegram Passport which has the issue @@ -394,6 +403,7 @@ impl PassportElementErrorTranslationFiles { /// The error is considered resolved when new data is added. /// /// [The official docs](https://core.telegram.org/bots/api#passportelementerrorunspecified). +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Hash, Eq, PartialEq, Serialize, Deserialize)] pub struct PassportElementErrorUnspecified { /// Type of element of the user's Telegram Passport which has the diff --git a/crates/teloxide-core/src/types/passport_file.rs b/crates/teloxide-core/src/types/passport_file.rs index 05b97225..737b2f7f 100644 --- a/crates/teloxide-core/src/types/passport_file.rs +++ b/crates/teloxide-core/src/types/passport_file.rs @@ -10,6 +10,7 @@ use crate::types::FileMeta; /// don't exceed 10MB. /// /// [The official docs](https://core.telegram.org/bots/api#passportfile). +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize, Deref)] pub struct PassportFile { /// Metadata of the passport file. diff --git a/crates/teloxide-core/src/types/poll_answer.rs b/crates/teloxide-core/src/types/poll_answer.rs index b8f26968..9d2bd648 100644 --- a/crates/teloxide-core/src/types/poll_answer.rs +++ b/crates/teloxide-core/src/types/poll_answer.rs @@ -1,6 +1,7 @@ use crate::types::User; use serde::{Deserialize, Serialize}; +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)] pub struct PollAnswer { /// Unique poll identifier. diff --git a/crates/teloxide-core/src/types/proximity_alert_triggered.rs b/crates/teloxide-core/src/types/proximity_alert_triggered.rs index a0addc95..f82b142c 100644 --- a/crates/teloxide-core/src/types/proximity_alert_triggered.rs +++ b/crates/teloxide-core/src/types/proximity_alert_triggered.rs @@ -4,6 +4,7 @@ use crate::types::User; /// This object represents the content of a service message, sent whenever a /// user in the chat triggers a proximity alert set by another user. +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)] pub struct ProximityAlertTriggered { /// User that triggered the alert. diff --git a/crates/teloxide-core/src/types/shipping_address.rs b/crates/teloxide-core/src/types/shipping_address.rs index 478ad714..835dc42f 100644 --- a/crates/teloxide-core/src/types/shipping_address.rs +++ b/crates/teloxide-core/src/types/shipping_address.rs @@ -4,6 +4,7 @@ use serde::{Deserialize, Serialize}; /// This object represents a shipping address. /// /// [The official docs](https://core.telegram.org/bots/api#shippingaddress). +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)] pub struct ShippingAddress { /// ISO 3166-1 alpha-2 country code. diff --git a/crates/teloxide-core/src/types/shipping_option.rs b/crates/teloxide-core/src/types/shipping_option.rs index d1b4fe6e..519e9975 100644 --- a/crates/teloxide-core/src/types/shipping_option.rs +++ b/crates/teloxide-core/src/types/shipping_option.rs @@ -5,6 +5,7 @@ use crate::types::LabeledPrice; /// This object represents one shipping option. /// /// [The official docs](https://core.telegram.org/bots/api#shippingoption). +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)] pub struct ShippingOption { /// Shipping option identifier. diff --git a/crates/teloxide-core/src/types/shipping_query.rs b/crates/teloxide-core/src/types/shipping_query.rs index f8df55d4..b7c1879a 100644 --- a/crates/teloxide-core/src/types/shipping_query.rs +++ b/crates/teloxide-core/src/types/shipping_query.rs @@ -5,6 +5,7 @@ use crate::types::{ShippingAddress, User}; /// This object contains information about an incoming shipping query. /// /// [The official docs](https://core.telegram.org/bots/api#shippingquery). +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)] pub struct ShippingQuery { /// Unique query identifier. diff --git a/crates/teloxide-core/src/types/sticker_set.rs b/crates/teloxide-core/src/types/sticker_set.rs index d7adaf29..0f45eacb 100644 --- a/crates/teloxide-core/src/types/sticker_set.rs +++ b/crates/teloxide-core/src/types/sticker_set.rs @@ -7,6 +7,7 @@ use crate::types::{PhotoSize, Sticker, StickerFormat, StickerType}; /// This object represents a sticker set. /// /// [The official docs](https://core.telegram.org/bots/api#stickerset). +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, PartialEq, Serialize, Deserialize)] pub struct StickerSet { /// Sticker set name. diff --git a/crates/teloxide-core/src/types/update.rs b/crates/teloxide-core/src/types/update.rs index 82a77e78..f6622d57 100644 --- a/crates/teloxide-core/src/types/update.rs +++ b/crates/teloxide-core/src/types/update.rs @@ -12,6 +12,7 @@ use crate::types::{ /// [The official docs](https://core.telegram.org/bots/api#update). /// /// [object]: https://core.telegram.org/bots/api#available-types +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, PartialEq, Serialize, Deserialize)] pub struct Update { /// The update‘s unique identifier. Update identifiers start from a certain diff --git a/crates/teloxide-core/src/types/user_profile_photos.rs b/crates/teloxide-core/src/types/user_profile_photos.rs index ac0a9b5d..79fa8571 100644 --- a/crates/teloxide-core/src/types/user_profile_photos.rs +++ b/crates/teloxide-core/src/types/user_profile_photos.rs @@ -5,6 +5,7 @@ use crate::types::PhotoSize; /// This object represent a user's profile pictures. /// /// [The official docs](https://core.telegram.org/bots/api#userprofilephotos). +#[serde_with_macros::skip_serializing_none] #[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)] pub struct UserProfilePhotos { /// Total number of profile pictures the target user has.