mirror of
https://github.com/teloxide/teloxide.git
synced 2024-12-22 14:35:36 +01:00
Use CountryCode
instead of String
in Giveaway
struct
This commit is contained in:
parent
4870338a75
commit
25666a301c
1 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
use chrono::{DateTime, Utc};
|
use chrono::{DateTime, Utc};
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
use crate::types::Chat;
|
use crate::types::{Chat, CountryCode};
|
||||||
|
|
||||||
/// This object represents a message about a scheduled giveaway.
|
/// This object represents a message about a scheduled giveaway.
|
||||||
#[serde_with::skip_serializing_none]
|
#[serde_with::skip_serializing_none]
|
||||||
|
@ -37,7 +37,7 @@ pub struct Giveaway {
|
||||||
/// empty, then all users can participate in the giveaway. Users with a
|
/// empty, then all users can participate in the giveaway. Users with a
|
||||||
/// phone number that was bought on Fragment can always participate in
|
/// phone number that was bought on Fragment can always participate in
|
||||||
/// giveaways.
|
/// giveaways.
|
||||||
pub country_codes: Option<Vec<String>>,
|
pub country_codes: Option<Vec<CountryCode>>,
|
||||||
|
|
||||||
/// The number of months the Telegram Premium subscription won from the
|
/// The number of months the Telegram Premium subscription won from the
|
||||||
/// giveaway will be active for
|
/// giveaway will be active for
|
||||||
|
|
Loading…
Reference in a new issue