1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
use crate::errors::Result;
use crate::types::*;
use uuid::Uuid;

/// Contains information about a chat invite link
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct ChatInviteLinkInfo {
    #[doc(hidden)]
    #[serde(rename(serialize = "@extra", deserialize = "@extra"))]
    extra: Option<String>,
    #[serde(rename(serialize = "@client_id", deserialize = "@client_id"))]
    client_id: Option<i32>,
    /// Chat identifier of the invite link; 0 if the user has no access to the chat before joining

    #[serde(default)]
    chat_id: i64,
    /// If non-zero, the amount of time for which read access to the chat will remain available, in seconds

    #[serde(default)]
    accessible_for: i32,
    /// Type of the chat

    #[serde(rename(serialize = "type", deserialize = "type"))]
    #[serde(skip_serializing_if = "ChatType::_is_default")]
    type_: ChatType,
    /// Title of the chat

    #[serde(default)]
    title: String,
    /// Chat photo; may be null
    photo: Option<ChatPhotoInfo>,
    /// Contains information about a chat invite link

    #[serde(default)]
    description: String,
    /// Number of members in the chat

    #[serde(default)]
    member_count: i32,
    /// User identifiers of some chat members that may be known to the current user

    #[serde(default)]
    member_user_ids: Vec<i64>,
    /// True, if the link only creates join request

    #[serde(default)]
    creates_join_request: bool,
    /// True, if the chat is a public supergroup or channel, i.e. it has a username or it is a location-based supergroup

    #[serde(default)]
    is_public: bool,
}

impl RObject for ChatInviteLinkInfo {
    #[doc(hidden)]
    fn extra(&self) -> Option<&str> {
        self.extra.as_deref()
    }
    #[doc(hidden)]
    fn client_id(&self) -> Option<i32> {
        self.client_id
    }
}

impl ChatInviteLinkInfo {
    pub fn from_json<S: AsRef<str>>(json: S) -> Result<Self> {
        Ok(serde_json::from_str(json.as_ref())?)
    }
    pub fn builder() -> ChatInviteLinkInfoBuilder {
        let mut inner = ChatInviteLinkInfo::default();
        inner.extra = Some(Uuid::new_v4().to_string());

        ChatInviteLinkInfoBuilder { inner }
    }

    pub fn chat_id(&self) -> i64 {
        self.chat_id
    }

    pub fn accessible_for(&self) -> i32 {
        self.accessible_for
    }

    pub fn type_(&self) -> &ChatType {
        &self.type_
    }

    pub fn title(&self) -> &String {
        &self.title
    }

    pub fn photo(&self) -> &Option<ChatPhotoInfo> {
        &self.photo
    }

    pub fn description(&self) -> &String {
        &self.description
    }

    pub fn member_count(&self) -> i32 {
        self.member_count
    }

    pub fn member_user_ids(&self) -> &Vec<i64> {
        &self.member_user_ids
    }

    pub fn creates_join_request(&self) -> bool {
        self.creates_join_request
    }

    pub fn is_public(&self) -> bool {
        self.is_public
    }
}

#[doc(hidden)]
pub struct ChatInviteLinkInfoBuilder {
    inner: ChatInviteLinkInfo,
}

#[deprecated]
pub type RTDChatInviteLinkInfoBuilder = ChatInviteLinkInfoBuilder;

impl ChatInviteLinkInfoBuilder {
    pub fn build(&self) -> ChatInviteLinkInfo {
        self.inner.clone()
    }

    pub fn chat_id(&mut self, chat_id: i64) -> &mut Self {
        self.inner.chat_id = chat_id;
        self
    }

    pub fn accessible_for(&mut self, accessible_for: i32) -> &mut Self {
        self.inner.accessible_for = accessible_for;
        self
    }

    pub fn type_<T: AsRef<ChatType>>(&mut self, type_: T) -> &mut Self {
        self.inner.type_ = type_.as_ref().clone();
        self
    }

    pub fn title<T: AsRef<str>>(&mut self, title: T) -> &mut Self {
        self.inner.title = title.as_ref().to_string();
        self
    }

    pub fn photo<T: AsRef<ChatPhotoInfo>>(&mut self, photo: T) -> &mut Self {
        self.inner.photo = Some(photo.as_ref().clone());
        self
    }

    pub fn description<T: AsRef<str>>(&mut self, description: T) -> &mut Self {
        self.inner.description = description.as_ref().to_string();
        self
    }

    pub fn member_count(&mut self, member_count: i32) -> &mut Self {
        self.inner.member_count = member_count;
        self
    }

    pub fn member_user_ids(&mut self, member_user_ids: Vec<i64>) -> &mut Self {
        self.inner.member_user_ids = member_user_ids;
        self
    }

    pub fn creates_join_request(&mut self, creates_join_request: bool) -> &mut Self {
        self.inner.creates_join_request = creates_join_request;
        self
    }

    pub fn is_public(&mut self, is_public: bool) -> &mut Self {
        self.inner.is_public = is_public;
        self
    }
}

impl AsRef<ChatInviteLinkInfo> for ChatInviteLinkInfo {
    fn as_ref(&self) -> &ChatInviteLinkInfo {
        self
    }
}

impl AsRef<ChatInviteLinkInfo> for ChatInviteLinkInfoBuilder {
    fn as_ref(&self) -> &ChatInviteLinkInfo {
        &self.inner
    }
}