Improve documentation.
GitOrigin-RevId: 7a50e9c7cce5c3075b3550f2c55184b3c3b814c0
This commit is contained in:
parent
4e223096da
commit
b58b1a3612
@ -271,7 +271,7 @@ chatPhoto small:file big:file = ChatPhoto;
|
|||||||
//@description A regular user
|
//@description A regular user
|
||||||
userTypeRegular = UserType;
|
userTypeRegular = UserType;
|
||||||
|
|
||||||
//@description A deleted user or deleted bot. No information on the user besides the user_id is available. It is not possible to perform any active actions on this type of user
|
//@description A deleted user or deleted bot. No information on the user besides the user identifier is available. It is not possible to perform any active actions on this type of user
|
||||||
userTypeDeleted = UserType;
|
userTypeDeleted = UserType;
|
||||||
|
|
||||||
//@description A bot (see https://core.telegram.org/bots) @can_join_groups True, if the bot can be invited to basic group and supergroup chats
|
//@description A bot (see https://core.telegram.org/bots) @can_join_groups True, if the bot can be invited to basic group and supergroup chats
|
||||||
@ -279,7 +279,7 @@ userTypeDeleted = UserType;
|
|||||||
//@is_inline True, if the bot supports inline queries @inline_query_placeholder Placeholder for inline queries (displayed on the client input field) @need_location True, if the location of the user should be sent with every inline query to this bot
|
//@is_inline True, if the bot supports inline queries @inline_query_placeholder Placeholder for inline queries (displayed on the client input field) @need_location True, if the location of the user should be sent with every inline query to this bot
|
||||||
userTypeBot can_join_groups:Bool can_read_all_group_messages:Bool is_inline:Bool inline_query_placeholder:string need_location:Bool = UserType;
|
userTypeBot can_join_groups:Bool can_read_all_group_messages:Bool is_inline:Bool inline_query_placeholder:string need_location:Bool = UserType;
|
||||||
|
|
||||||
//@description No information on the user besides the user_id is available, yet this user has not been deleted. This object is extremely rare and must be handled like a deleted user. It is not possible to perform any actions on users of this type
|
//@description No information on the user besides the user identifier is available, yet this user has not been deleted. This object is extremely rare and must be handled like a deleted user. It is not possible to perform any actions on users of this type
|
||||||
userTypeUnknown = UserType;
|
userTypeUnknown = UserType;
|
||||||
|
|
||||||
|
|
||||||
@ -1980,10 +1980,10 @@ chatEventPhotoChanged old_photo:photo new_photo:photo = ChatEventAction;
|
|||||||
//@description The can_invite_users permission of a supergroup chat was toggled @can_invite_users New value of can_invite_users permission
|
//@description The can_invite_users permission of a supergroup chat was toggled @can_invite_users New value of can_invite_users permission
|
||||||
chatEventInvitesToggled can_invite_users:Bool = ChatEventAction;
|
chatEventInvitesToggled can_invite_users:Bool = ChatEventAction;
|
||||||
|
|
||||||
//@description The linked_chat_id of a supergroup was changed @old_linked_chat_id Previous supergroup linked chat identifier @new_linked_chat_id New supergroup linked chat identifier
|
//@description The linked chat of a supergroup was changed @old_linked_chat_id Previous supergroup linked chat identifier @new_linked_chat_id New supergroup linked chat identifier
|
||||||
chatEventLinkedChatChanged old_linked_chat_id:int53 new_linked_chat_id:int53 = ChatEventAction;
|
chatEventLinkedChatChanged old_linked_chat_id:int53 new_linked_chat_id:int53 = ChatEventAction;
|
||||||
|
|
||||||
//@description The slow_mode_delay of a supergroup was changed @old_slow_mode_delay Previous value of slow_mode_delay @new_slow_mode_delay New value of slow_mode_delay
|
//@description The slow_mode_delay setting of a supergroup was changed @old_slow_mode_delay Previous value of slow_mode_delay @new_slow_mode_delay New value of slow_mode_delay
|
||||||
chatEventSlowModeDelayChanged old_slow_mode_delay:int32 new_slow_mode_delay:int32 = ChatEventAction;
|
chatEventSlowModeDelayChanged old_slow_mode_delay:int32 new_slow_mode_delay:int32 = ChatEventAction;
|
||||||
|
|
||||||
//@description The sign_messages setting of a channel was toggled @sign_messages New value of sign_messages
|
//@description The sign_messages setting of a channel was toggled @sign_messages New value of sign_messages
|
||||||
@ -3684,7 +3684,7 @@ unblockUser user_id:int32 = Ok;
|
|||||||
getBlockedUsers offset:int32 limit:int32 = Users;
|
getBlockedUsers offset:int32 limit:int32 = Users;
|
||||||
|
|
||||||
|
|
||||||
//@description Adds a user to the contact list or edits an existing contact by their user_id @contact The contact to add or edit; phone number can be empty and needs to be specified only if known, vCard is ignored
|
//@description Adds a user to the contact list or edits an existing contact by their user identifiers @contact The contact to add or edit; phone number can be empty and needs to be specified only if known, vCard is ignored
|
||||||
//@share_phone_number True, if the new contact needs to be allowed to see current user's phone number. A corresponding rule to userPrivacySettingShowPhoneNumber will be added if needed. Use the field UserFullInfo.need_phone_number_privacy_exception to check whether the current user needs to be asked to share their phone number
|
//@share_phone_number True, if the new contact needs to be allowed to see current user's phone number. A corresponding rule to userPrivacySettingShowPhoneNumber will be added if needed. Use the field UserFullInfo.need_phone_number_privacy_exception to check whether the current user needs to be asked to share their phone number
|
||||||
addContact contact:contact share_phone_number:Bool = Ok;
|
addContact contact:contact share_phone_number:Bool = Ok;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user