You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: TdLib.Api/Functions/CreateVideoChat.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ namespace TdLib
11
11
publicstaticpartialclassTdApi
12
12
{
13
13
/// <summary>
14
-
/// Creates a video chat (a group call bound to a chat). Available only for basic groups, supergroups and channels; requires can_manage_video_chats administrator right
14
+
/// Creates a video chat (a group call bound to a chat); for basic groups, supergroups and channels only; requires can_manage_video_chats administrator right
15
15
/// </summary>
16
16
publicclassCreateVideoChat:Function<GroupCallId>
17
17
{
@@ -57,7 +57,7 @@ public class CreateVideoChat : Function<GroupCallId>
57
57
}
58
58
59
59
/// <summary>
60
-
/// Creates a video chat (a group call bound to a chat). Available only for basic groups, supergroups and channels; requires can_manage_video_chats administrator right
60
+
/// Creates a video chat (a group call bound to a chat); for basic groups, supergroups and channels only; requires can_manage_video_chats administrator right
Copy file name to clipboardExpand all lines: TdLib.Api/Functions/GetChatOwnerAfterLeaving.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ namespace TdLib
11
11
publicstaticpartialclassTdApi
12
12
{
13
13
/// <summary>
14
-
/// Returns the user who will become the owner of the chat after 7 days if the current user does not return to the chat during that period; requires owner privileges in the chat.
14
+
/// Returns the user who will become the owner of the chat after 7 days if the current user does not return to the supergroup or channel during that period or immediately for basic groups; requires owner privileges in the chat.
15
15
/// Available only for supergroups and channel chats
@@ -37,7 +37,7 @@ public class GetChatOwnerAfterLeaving : Function<User>
37
37
}
38
38
39
39
/// <summary>
40
-
/// Returns the user who will become the owner of the chat after 7 days if the current user does not return to the chat during that period; requires owner privileges in the chat.
40
+
/// Returns the user who will become the owner of the chat after 7 days if the current user does not return to the supergroup or channel during that period or immediately for basic groups; requires owner privileges in the chat.
41
41
/// Available only for supergroups and channel chats
Copy file name to clipboardExpand all lines: TdLib.Api/Functions/GetExternalLink.cs
+2-9Lines changed: 2 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -41,25 +41,18 @@ public class GetExternalLink : Function<HttpUrl>
41
41
[JsonConverter(typeof(Converter))]
42
42
[JsonProperty("allow_write_access")]
43
43
publicboolAllowWriteAccess{get;set;}
44
-
45
-
/// <summary>
46
-
/// Pass true if the current user allowed the bot that was returned in getExternalLinkInfo, to access their phone number
47
-
/// </summary>
48
-
[JsonConverter(typeof(Converter))]
49
-
[JsonProperty("allow_phone_number_access")]
50
-
publicboolAllowPhoneNumberAccess{get;set;}
51
44
}
52
45
53
46
/// <summary>
54
47
/// Returns an HTTP URL which can be used to automatically authorize the current user on a website after clicking an HTTP link.
55
48
/// Use the method getExternalLinkInfo to find whether a prior user confirmation is needed. May return an empty link if just a toast about successful login has to be shown
0 commit comments