UsersShared#

class aiogram.types.users_shared.UsersShared(*, request_id: int, users: List[SharedUser], user_ids: List[int] | None = None, **extra_data: Any)[source]#

This object contains information about the users whose identifiers were shared with the bot using a aiogram.types.keyboard_button_request_users.KeyboardButtonRequestUsers button.

Source: https://core.telegram.org/bots/api#usersshared

request_id: int#

Identifier of the request

users: List[SharedUser]#

Information about users shared with the bot.

model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}#

A dictionary of computed field names and their corresponding ComputedFieldInfo objects.

model_post_init(_ModelMetaclass__context: Any) None#

We need to both initialize private attributes and call the user-defined model_post_init method.

user_ids: List[int] | None#

Identifiers of the shared users. These numbers may have more than 32 significant bits and some programming languages may have difficulty/silent defects in interpreting them. But they have at most 52 significant bits, so 64-bit integers or double-precision float types are safe for storing these identifiers. The bot may not have access to the users and could be unable to use these identifiers, unless the users are already known to the bot by some other means.