1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};
use crate::types::{Chat, ChatInviteLink, User};
/// Represents a join request sent to a chat.
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct ChatJoinRequest {
/// Chat to which the request was sent
pub chat: Chat,
/// User that sent the join request
pub from: User,
/// Date the request was sent in Unix time
#[serde(with = "crate::types::serde_date_from_unix_timestamp")]
pub date: DateTime<Utc>,
/// Bio of the user.
pub bio: Option<String>,
/// Chat invite link that was used by the user to send the join request
pub invite_link: Option<ChatInviteLink>,
}