tdlib-schema 1.7.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.github/workflows/main.yml +16 -0
- data/.gitignore +15 -0
- data/.gitmodules +3 -0
- data/.rspec +3 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/CHANGELOG.md +5 -0
- data/CODE_OF_CONDUCT.md +84 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/README.md +33 -0
- data/Rakefile +8 -0
- data/bin/console +15 -0
- data/bin/parser +466 -0
- data/bin/setup +8 -0
- data/lib/tdlib-schema.rb +3 -0
- data/lib/tdlib/client_methods.rb +5144 -0
- data/lib/tdlib/td.rb +2 -0
- data/lib/tdlib/types.rb +1293 -0
- data/lib/tdlib/types/account_ttl.rb +10 -0
- data/lib/tdlib/types/address.rb +18 -0
- data/lib/tdlib/types/animated_chat_photo.rb +12 -0
- data/lib/tdlib/types/animation.rb +26 -0
- data/lib/tdlib/types/animations.rb +8 -0
- data/lib/tdlib/types/audio.rb +25 -0
- data/lib/tdlib/types/authentication_code_info.rb +15 -0
- data/lib/tdlib/types/authentication_code_type.rb +13 -0
- data/lib/tdlib/types/authentication_code_type/call.rb +8 -0
- data/lib/tdlib/types/authentication_code_type/flash_call.rb +9 -0
- data/lib/tdlib/types/authentication_code_type/sms.rb +8 -0
- data/lib/tdlib/types/authentication_code_type/telegram_message.rb +9 -0
- data/lib/tdlib/types/authorization_state.rb +20 -0
- data/lib/tdlib/types/authorization_state/closed.rb +9 -0
- data/lib/tdlib/types/authorization_state/closing.rb +7 -0
- data/lib/tdlib/types/authorization_state/logging_out.rb +5 -0
- data/lib/tdlib/types/authorization_state/ready.rb +6 -0
- data/lib/tdlib/types/authorization_state/wait_code.rb +8 -0
- data/lib/tdlib/types/authorization_state/wait_encryption_key.rb +8 -0
- data/lib/tdlib/types/authorization_state/wait_other_device_confirmation.rb +9 -0
- data/lib/tdlib/types/authorization_state/wait_password.rb +13 -0
- data/lib/tdlib/types/authorization_state/wait_phone_number.rb +7 -0
- data/lib/tdlib/types/authorization_state/wait_registration.rb +9 -0
- data/lib/tdlib/types/authorization_state/wait_tdlib_parameters.rb +5 -0
- data/lib/tdlib/types/auto_download_settings.rb +24 -0
- data/lib/tdlib/types/auto_download_settings_presets.rb +15 -0
- data/lib/tdlib/types/background.rb +19 -0
- data/lib/tdlib/types/background_fill.rb +11 -0
- data/lib/tdlib/types/background_fill/gradient.rb +13 -0
- data/lib/tdlib/types/background_fill/solid.rb +8 -0
- data/lib/tdlib/types/background_type.rb +12 -0
- data/lib/tdlib/types/background_type/fill.rb +8 -0
- data/lib/tdlib/types/background_type/pattern.rb +13 -0
- data/lib/tdlib/types/background_type/wallpaper.rb +11 -0
- data/lib/tdlib/types/backgrounds.rb +8 -0
- data/lib/tdlib/types/bank_card_action_open_url.rb +10 -0
- data/lib/tdlib/types/bank_card_info.rb +10 -0
- data/lib/tdlib/types/base.rb +29 -0
- data/lib/tdlib/types/basic_group.rb +16 -0
- data/lib/tdlib/types/basic_group_full_info.rb +19 -0
- data/lib/tdlib/types/bot_command.rb +10 -0
- data/lib/tdlib/types/bot_info.rb +10 -0
- data/lib/tdlib/types/call.rb +16 -0
- data/lib/tdlib/types/call_discard_reason.rb +14 -0
- data/lib/tdlib/types/call_discard_reason/declined.rb +6 -0
- data/lib/tdlib/types/call_discard_reason/disconnected.rb +5 -0
- data/lib/tdlib/types/call_discard_reason/empty.rb +5 -0
- data/lib/tdlib/types/call_discard_reason/hung_up.rb +5 -0
- data/lib/tdlib/types/call_discard_reason/missed.rb +6 -0
- data/lib/tdlib/types/call_id.rb +8 -0
- data/lib/tdlib/types/call_problem.rb +18 -0
- data/lib/tdlib/types/call_problem/distorted_speech.rb +5 -0
- data/lib/tdlib/types/call_problem/distorted_video.rb +5 -0
- data/lib/tdlib/types/call_problem/dropped.rb +5 -0
- data/lib/tdlib/types/call_problem/echo.rb +5 -0
- data/lib/tdlib/types/call_problem/interruptions.rb +5 -0
- data/lib/tdlib/types/call_problem/noise.rb +5 -0
- data/lib/tdlib/types/call_problem/pixelated_video.rb +5 -0
- data/lib/tdlib/types/call_problem/silent_local.rb +5 -0
- data/lib/tdlib/types/call_problem/silent_remote.rb +5 -0
- data/lib/tdlib/types/call_protocol.rb +16 -0
- data/lib/tdlib/types/call_server.rb +16 -0
- data/lib/tdlib/types/call_server_type.rb +11 -0
- data/lib/tdlib/types/call_server_type/telegram_reflector.rb +8 -0
- data/lib/tdlib/types/call_server_type/webrtc.rb +14 -0
- data/lib/tdlib/types/call_state.rb +15 -0
- data/lib/tdlib/types/call_state/discarded.rb +12 -0
- data/lib/tdlib/types/call_state/error.rb +9 -0
- data/lib/tdlib/types/call_state/exchanging_keys.rb +5 -0
- data/lib/tdlib/types/call_state/hanging_up.rb +5 -0
- data/lib/tdlib/types/call_state/pending.rb +10 -0
- data/lib/tdlib/types/call_state/ready.rb +18 -0
- data/lib/tdlib/types/callback_query_answer.rb +12 -0
- data/lib/tdlib/types/callback_query_payload.rb +12 -0
- data/lib/tdlib/types/callback_query_payload/data.rb +8 -0
- data/lib/tdlib/types/callback_query_payload/data_with_password.rb +10 -0
- data/lib/tdlib/types/callback_query_payload/game.rb +8 -0
- data/lib/tdlib/types/can_transfer_ownership_result.rb +13 -0
- data/lib/tdlib/types/can_transfer_ownership_result/ok.rb +5 -0
- data/lib/tdlib/types/can_transfer_ownership_result/password_needed.rb +5 -0
- data/lib/tdlib/types/can_transfer_ownership_result/password_too_fresh.rb +8 -0
- data/lib/tdlib/types/can_transfer_ownership_result/session_too_fresh.rb +8 -0
- data/lib/tdlib/types/chat.rb +69 -0
- data/lib/tdlib/types/chat_action.rb +22 -0
- data/lib/tdlib/types/chat_action/cancel.rb +5 -0
- data/lib/tdlib/types/chat_action/choosing_contact.rb +5 -0
- data/lib/tdlib/types/chat_action/choosing_location.rb +5 -0
- data/lib/tdlib/types/chat_action/recording_video.rb +5 -0
- data/lib/tdlib/types/chat_action/recording_video_note.rb +5 -0
- data/lib/tdlib/types/chat_action/recording_voice_note.rb +5 -0
- data/lib/tdlib/types/chat_action/start_playing_game.rb +5 -0
- data/lib/tdlib/types/chat_action/typing.rb +5 -0
- data/lib/tdlib/types/chat_action/uploading_document.rb +8 -0
- data/lib/tdlib/types/chat_action/uploading_photo.rb +8 -0
- data/lib/tdlib/types/chat_action/uploading_video.rb +8 -0
- data/lib/tdlib/types/chat_action/uploading_video_note.rb +8 -0
- data/lib/tdlib/types/chat_action/uploading_voice_note.rb +8 -0
- data/lib/tdlib/types/chat_action_bar.rb +15 -0
- data/lib/tdlib/types/chat_action_bar/add_contact.rb +6 -0
- data/lib/tdlib/types/chat_action_bar/invite_members.rb +5 -0
- data/lib/tdlib/types/chat_action_bar/report_add_block.rb +14 -0
- data/lib/tdlib/types/chat_action_bar/report_spam.rb +10 -0
- data/lib/tdlib/types/chat_action_bar/report_unrelated_location.rb +6 -0
- data/lib/tdlib/types/chat_action_bar/share_phone_number.rb +6 -0
- data/lib/tdlib/types/chat_administrator.rb +12 -0
- data/lib/tdlib/types/chat_administrators.rb +8 -0
- data/lib/tdlib/types/chat_event.rb +14 -0
- data/lib/tdlib/types/chat_event_action.rb +41 -0
- data/lib/tdlib/types/chat_event_action/description_changed.rb +10 -0
- data/lib/tdlib/types/chat_event_action/invite_link_deleted.rb +8 -0
- data/lib/tdlib/types/chat_event_action/invite_link_edited.rb +10 -0
- data/lib/tdlib/types/chat_event_action/invite_link_revoked.rb +8 -0
- data/lib/tdlib/types/chat_event_action/invites_toggled.rb +8 -0
- data/lib/tdlib/types/chat_event_action/is_all_history_available_toggled.rb +8 -0
- data/lib/tdlib/types/chat_event_action/linked_chat_changed.rb +10 -0
- data/lib/tdlib/types/chat_event_action/location_changed.rb +10 -0
- data/lib/tdlib/types/chat_event_action/member_invited.rb +10 -0
- data/lib/tdlib/types/chat_event_action/member_joined.rb +5 -0
- data/lib/tdlib/types/chat_event_action/member_joined_by_invite_link.rb +8 -0
- data/lib/tdlib/types/chat_event_action/member_left.rb +5 -0
- data/lib/tdlib/types/chat_event_action/member_promoted.rb +12 -0
- data/lib/tdlib/types/chat_event_action/member_restricted.rb +12 -0
- data/lib/tdlib/types/chat_event_action/message_deleted.rb +8 -0
- data/lib/tdlib/types/chat_event_action/message_edited.rb +10 -0
- data/lib/tdlib/types/chat_event_action/message_pinned.rb +8 -0
- data/lib/tdlib/types/chat_event_action/message_ttl_setting_changed.rb +10 -0
- data/lib/tdlib/types/chat_event_action/message_unpinned.rb +8 -0
- data/lib/tdlib/types/chat_event_action/permissions_changed.rb +10 -0
- data/lib/tdlib/types/chat_event_action/photo_changed.rb +10 -0
- data/lib/tdlib/types/chat_event_action/poll_stopped.rb +8 -0
- data/lib/tdlib/types/chat_event_action/sign_messages_toggled.rb +8 -0
- data/lib/tdlib/types/chat_event_action/slow_mode_delay_changed.rb +10 -0
- data/lib/tdlib/types/chat_event_action/sticker_set_changed.rb +10 -0
- data/lib/tdlib/types/chat_event_action/title_changed.rb +10 -0
- data/lib/tdlib/types/chat_event_action/username_changed.rb +10 -0
- data/lib/tdlib/types/chat_event_action/voice_chat_created.rb +9 -0
- data/lib/tdlib/types/chat_event_action/voice_chat_discarded.rb +9 -0
- data/lib/tdlib/types/chat_event_action/voice_chat_mute_new_participants_toggled.rb +8 -0
- data/lib/tdlib/types/chat_event_action/voice_chat_participant_is_muted_toggled.rb +10 -0
- data/lib/tdlib/types/chat_event_action/voice_chat_participant_volume_level_changed.rb +10 -0
- data/lib/tdlib/types/chat_event_log_filters.rb +31 -0
- data/lib/tdlib/types/chat_events.rb +8 -0
- data/lib/tdlib/types/chat_filter.rb +36 -0
- data/lib/tdlib/types/chat_filter_info.rb +14 -0
- data/lib/tdlib/types/chat_invite_link.rb +27 -0
- data/lib/tdlib/types/chat_invite_link_count.rb +12 -0
- data/lib/tdlib/types/chat_invite_link_counts.rb +8 -0
- data/lib/tdlib/types/chat_invite_link_info.rb +24 -0
- data/lib/tdlib/types/chat_invite_link_member.rb +10 -0
- data/lib/tdlib/types/chat_invite_link_members.rb +10 -0
- data/lib/tdlib/types/chat_invite_links.rb +10 -0
- data/lib/tdlib/types/chat_list.rb +12 -0
- data/lib/tdlib/types/chat_list/archive.rb +6 -0
- data/lib/tdlib/types/chat_list/filter.rb +8 -0
- data/lib/tdlib/types/chat_list/main.rb +5 -0
- data/lib/tdlib/types/chat_lists.rb +8 -0
- data/lib/tdlib/types/chat_location.rb +10 -0
- data/lib/tdlib/types/chat_member.rb +21 -0
- data/lib/tdlib/types/chat_member_status.rb +15 -0
- data/lib/tdlib/types/chat_member_status/administrator.rb +42 -0
- data/lib/tdlib/types/chat_member_status/banned.rb +13 -0
- data/lib/tdlib/types/chat_member_status/creator.rb +14 -0
- data/lib/tdlib/types/chat_member_status/left.rb +5 -0
- data/lib/tdlib/types/chat_member_status/member.rb +5 -0
- data/lib/tdlib/types/chat_member_status/restricted.rb +16 -0
- data/lib/tdlib/types/chat_members.rb +10 -0
- data/lib/tdlib/types/chat_members_filter.rb +16 -0
- data/lib/tdlib/types/chat_members_filter/administrators.rb +5 -0
- data/lib/tdlib/types/chat_members_filter/banned.rb +5 -0
- data/lib/tdlib/types/chat_members_filter/bots.rb +5 -0
- data/lib/tdlib/types/chat_members_filter/contacts.rb +5 -0
- data/lib/tdlib/types/chat_members_filter/members.rb +5 -0
- data/lib/tdlib/types/chat_members_filter/mention.rb +8 -0
- data/lib/tdlib/types/chat_members_filter/restricted.rb +5 -0
- data/lib/tdlib/types/chat_nearby.rb +10 -0
- data/lib/tdlib/types/chat_notification_settings.rb +34 -0
- data/lib/tdlib/types/chat_permissions.rb +28 -0
- data/lib/tdlib/types/chat_photo.rb +16 -0
- data/lib/tdlib/types/chat_photo_info.rb +16 -0
- data/lib/tdlib/types/chat_photos.rb +10 -0
- data/lib/tdlib/types/chat_position.rb +15 -0
- data/lib/tdlib/types/chat_report_reason.rb +17 -0
- data/lib/tdlib/types/chat_report_reason/child_abuse.rb +5 -0
- data/lib/tdlib/types/chat_report_reason/copyright.rb +5 -0
- data/lib/tdlib/types/chat_report_reason/custom.rb +5 -0
- data/lib/tdlib/types/chat_report_reason/fake.rb +5 -0
- data/lib/tdlib/types/chat_report_reason/pornography.rb +5 -0
- data/lib/tdlib/types/chat_report_reason/spam.rb +5 -0
- data/lib/tdlib/types/chat_report_reason/unrelated_location.rb +5 -0
- data/lib/tdlib/types/chat_report_reason/violence.rb +5 -0
- data/lib/tdlib/types/chat_source.rb +11 -0
- data/lib/tdlib/types/chat_source/mtproto_proxy.rb +5 -0
- data/lib/tdlib/types/chat_source/public_service_announcement.rb +10 -0
- data/lib/tdlib/types/chat_statistics.rb +11 -0
- data/lib/tdlib/types/chat_statistics/channel.rb +42 -0
- data/lib/tdlib/types/chat_statistics/supergroup.rb +42 -0
- data/lib/tdlib/types/chat_statistics_administrator_actions_info.rb +14 -0
- data/lib/tdlib/types/chat_statistics_inviter_info.rb +10 -0
- data/lib/tdlib/types/chat_statistics_message_interaction_info.rb +12 -0
- data/lib/tdlib/types/chat_statistics_message_sender_info.rb +12 -0
- data/lib/tdlib/types/chat_type.rb +13 -0
- data/lib/tdlib/types/chat_type/basic_group.rb +8 -0
- data/lib/tdlib/types/chat_type/private.rb +8 -0
- data/lib/tdlib/types/chat_type/secret.rb +10 -0
- data/lib/tdlib/types/chat_type/supergroup.rb +11 -0
- data/lib/tdlib/types/chats.rb +10 -0
- data/lib/tdlib/types/chats_nearby.rb +10 -0
- data/lib/tdlib/types/check_chat_username_result.rb +14 -0
- data/lib/tdlib/types/check_chat_username_result/ok.rb +5 -0
- data/lib/tdlib/types/check_chat_username_result/public_chats_too_much.rb +5 -0
- data/lib/tdlib/types/check_chat_username_result/public_groups_unavailable.rb +5 -0
- data/lib/tdlib/types/check_chat_username_result/username_invalid.rb +5 -0
- data/lib/tdlib/types/check_chat_username_result/username_occupied.rb +5 -0
- data/lib/tdlib/types/closed_vector_path.rb +9 -0
- data/lib/tdlib/types/connected_website.rb +25 -0
- data/lib/tdlib/types/connected_websites.rb +8 -0
- data/lib/tdlib/types/connection_state.rb +14 -0
- data/lib/tdlib/types/connection_state/connecting.rb +5 -0
- data/lib/tdlib/types/connection_state/connecting_to_proxy.rb +5 -0
- data/lib/tdlib/types/connection_state/ready.rb +5 -0
- data/lib/tdlib/types/connection_state/updating.rb +5 -0
- data/lib/tdlib/types/connection_state/waiting_for_network.rb +6 -0
- data/lib/tdlib/types/contact.rb +16 -0
- data/lib/tdlib/types/count.rb +8 -0
- data/lib/tdlib/types/countries.rb +8 -0
- data/lib/tdlib/types/country_info.rb +16 -0
- data/lib/tdlib/types/custom_request_result.rb +8 -0
- data/lib/tdlib/types/database_statistics.rb +8 -0
- data/lib/tdlib/types/date.rb +12 -0
- data/lib/tdlib/types/date_range.rb +10 -0
- data/lib/tdlib/types/dated_file.rb +10 -0
- data/lib/tdlib/types/deep_link_info.rb +10 -0
- data/lib/tdlib/types/device_token.rb +22 -0
- data/lib/tdlib/types/device_token/apple_push.rb +10 -0
- data/lib/tdlib/types/device_token/apple_push_vo_ip.rb +12 -0
- data/lib/tdlib/types/device_token/black_berry_push.rb +8 -0
- data/lib/tdlib/types/device_token/firebase_cloud_messaging.rb +10 -0
- data/lib/tdlib/types/device_token/microsoft_push.rb +8 -0
- data/lib/tdlib/types/device_token/microsoft_push_vo_ip.rb +8 -0
- data/lib/tdlib/types/device_token/simple_push.rb +9 -0
- data/lib/tdlib/types/device_token/tizen_push.rb +8 -0
- data/lib/tdlib/types/device_token/ubuntu_push.rb +8 -0
- data/lib/tdlib/types/device_token/web_push.rb +13 -0
- data/lib/tdlib/types/device_token/windows_push.rb +9 -0
- data/lib/tdlib/types/dice_stickers.rb +11 -0
- data/lib/tdlib/types/dice_stickers/regular.rb +8 -0
- data/lib/tdlib/types/dice_stickers/slot_machine.rb +18 -0
- data/lib/tdlib/types/document.rb +17 -0
- data/lib/tdlib/types/draft_message.rb +13 -0
- data/lib/tdlib/types/email_address_authentication_code_info.rb +10 -0
- data/lib/tdlib/types/emojis.rb +8 -0
- data/lib/tdlib/types/encrypted_credentials.rb +12 -0
- data/lib/tdlib/types/encrypted_passport_element.rb +25 -0
- data/lib/tdlib/types/error.rb +12 -0
- data/lib/tdlib/types/file.rb +18 -0
- data/lib/tdlib/types/file_part.rb +8 -0
- data/lib/tdlib/types/file_type.rb +25 -0
- data/lib/tdlib/types/file_type/animation.rb +5 -0
- data/lib/tdlib/types/file_type/audio.rb +5 -0
- data/lib/tdlib/types/file_type/document.rb +5 -0
- data/lib/tdlib/types/file_type/none.rb +5 -0
- data/lib/tdlib/types/file_type/photo.rb +5 -0
- data/lib/tdlib/types/file_type/profile_photo.rb +5 -0
- data/lib/tdlib/types/file_type/secret.rb +5 -0
- data/lib/tdlib/types/file_type/secret_thumbnail.rb +5 -0
- data/lib/tdlib/types/file_type/secure.rb +5 -0
- data/lib/tdlib/types/file_type/sticker.rb +5 -0
- data/lib/tdlib/types/file_type/thumbnail.rb +5 -0
- data/lib/tdlib/types/file_type/unknown.rb +5 -0
- data/lib/tdlib/types/file_type/video.rb +5 -0
- data/lib/tdlib/types/file_type/video_note.rb +5 -0
- data/lib/tdlib/types/file_type/voice_note.rb +5 -0
- data/lib/tdlib/types/file_type/wallpaper.rb +5 -0
- data/lib/tdlib/types/formatted_text.rb +14 -0
- data/lib/tdlib/types/found_messages.rb +13 -0
- data/lib/tdlib/types/game.rb +21 -0
- data/lib/tdlib/types/game_high_score.rb +12 -0
- data/lib/tdlib/types/game_high_scores.rb +8 -0
- data/lib/tdlib/types/group_call.rb +42 -0
- data/lib/tdlib/types/group_call_id.rb +8 -0
- data/lib/tdlib/types/group_call_join_response.rb +11 -0
- data/lib/tdlib/types/group_call_join_response/stream.rb +5 -0
- data/lib/tdlib/types/group_call_join_response/webrtc.rb +10 -0
- data/lib/tdlib/types/group_call_join_response_candidate.rb +32 -0
- data/lib/tdlib/types/group_call_participant.rb +41 -0
- data/lib/tdlib/types/group_call_payload.rb +12 -0
- data/lib/tdlib/types/group_call_payload_fingerprint.rb +12 -0
- data/lib/tdlib/types/group_call_recent_speaker.rb +10 -0
- data/lib/tdlib/types/hashtags.rb +8 -0
- data/lib/tdlib/types/http_url.rb +8 -0
- data/lib/tdlib/types/identity_document.rb +19 -0
- data/lib/tdlib/types/imported_contacts.rb +12 -0
- data/lib/tdlib/types/inline_keyboard_button.rb +10 -0
- data/lib/tdlib/types/inline_keyboard_button_type.rb +16 -0
- data/lib/tdlib/types/inline_keyboard_button_type/buy.rb +7 -0
- data/lib/tdlib/types/inline_keyboard_button_type/callback.rb +8 -0
- data/lib/tdlib/types/inline_keyboard_button_type/callback_game.rb +7 -0
- data/lib/tdlib/types/inline_keyboard_button_type/callback_with_password.rb +8 -0
- data/lib/tdlib/types/inline_keyboard_button_type/login_url.rb +12 -0
- data/lib/tdlib/types/inline_keyboard_button_type/switch_inline.rb +10 -0
- data/lib/tdlib/types/inline_keyboard_button_type/url.rb +8 -0
- data/lib/tdlib/types/inline_query_result.rb +21 -0
- data/lib/tdlib/types/inline_query_result/animation.rb +12 -0
- data/lib/tdlib/types/inline_query_result/article.rb +18 -0
- data/lib/tdlib/types/inline_query_result/audio.rb +10 -0
- data/lib/tdlib/types/inline_query_result/contact.rb +12 -0
- data/lib/tdlib/types/inline_query_result/document.rb +14 -0
- data/lib/tdlib/types/inline_query_result/game.rb +10 -0
- data/lib/tdlib/types/inline_query_result/location.rb +14 -0
- data/lib/tdlib/types/inline_query_result/photo.rb +14 -0
- data/lib/tdlib/types/inline_query_result/sticker.rb +10 -0
- data/lib/tdlib/types/inline_query_result/venue.rb +12 -0
- data/lib/tdlib/types/inline_query_result/video.rb +14 -0
- data/lib/tdlib/types/inline_query_result/voice_note.rb +12 -0
- data/lib/tdlib/types/inline_query_results.rb +19 -0
- data/lib/tdlib/types/input_background.rb +11 -0
- data/lib/tdlib/types/input_background/local.rb +10 -0
- data/lib/tdlib/types/input_background/remote.rb +8 -0
- data/lib/tdlib/types/input_chat_photo.rb +12 -0
- data/lib/tdlib/types/input_chat_photo/animation.rb +12 -0
- data/lib/tdlib/types/input_chat_photo/previous.rb +8 -0
- data/lib/tdlib/types/input_chat_photo/static.rb +9 -0
- data/lib/tdlib/types/input_credentials.rb +13 -0
- data/lib/tdlib/types/input_credentials/apple_pay.rb +8 -0
- data/lib/tdlib/types/input_credentials/google_pay.rb +8 -0
- data/lib/tdlib/types/input_credentials/new.rb +10 -0
- data/lib/tdlib/types/input_credentials/saved.rb +9 -0
- data/lib/tdlib/types/input_file.rb +13 -0
- data/lib/tdlib/types/input_file/generated.rb +15 -0
- data/lib/tdlib/types/input_file/id.rb +8 -0
- data/lib/tdlib/types/input_file/local.rb +8 -0
- data/lib/tdlib/types/input_file/remote.rb +12 -0
- data/lib/tdlib/types/input_identity_document.rb +19 -0
- data/lib/tdlib/types/input_inline_query_result.rb +21 -0
- data/lib/tdlib/types/input_inline_query_result/animation.rb +34 -0
- data/lib/tdlib/types/input_inline_query_result/article.rb +29 -0
- data/lib/tdlib/types/input_inline_query_result/audio.rb +23 -0
- data/lib/tdlib/types/input_inline_query_result/contact.rb +23 -0
- data/lib/tdlib/types/input_inline_query_result/document.rb +30 -0
- data/lib/tdlib/types/input_inline_query_result/game.rb +13 -0
- data/lib/tdlib/types/input_inline_query_result/location.rb +28 -0
- data/lib/tdlib/types/input_inline_query_result/photo.rb +27 -0
- data/lib/tdlib/types/input_inline_query_result/sticker.rb +23 -0
- data/lib/tdlib/types/input_inline_query_result/venue.rb +23 -0
- data/lib/tdlib/types/input_inline_query_result/video.rb +32 -0
- data/lib/tdlib/types/input_inline_query_result/voice_note.rb +21 -0
- data/lib/tdlib/types/input_message_content.rb +26 -0
- data/lib/tdlib/types/input_message_content/animation.rb +21 -0
- data/lib/tdlib/types/input_message_content/audio.rb +18 -0
- data/lib/tdlib/types/input_message_content/contact.rb +8 -0
- data/lib/tdlib/types/input_message_content/dice.rb +10 -0
- data/lib/tdlib/types/input_message_content/document.rb +16 -0
- data/lib/tdlib/types/input_message_content/forwarded.rb +16 -0
- data/lib/tdlib/types/input_message_content/game.rb +10 -0
- data/lib/tdlib/types/input_message_content/invoice.rb +29 -0
- data/lib/tdlib/types/input_message_content/location.rb +19 -0
- data/lib/tdlib/types/input_message_content/photo.rb +22 -0
- data/lib/tdlib/types/input_message_content/poll.rb +24 -0
- data/lib/tdlib/types/input_message_content/sticker.rb +16 -0
- data/lib/tdlib/types/input_message_content/text.rb +15 -0
- data/lib/tdlib/types/input_message_content/venue.rb +8 -0
- data/lib/tdlib/types/input_message_content/video.rb +25 -0
- data/lib/tdlib/types/input_message_content/video_note.rb +14 -0
- data/lib/tdlib/types/input_message_content/voice_note.rb +14 -0
- data/lib/tdlib/types/input_passport_element.rb +22 -0
- data/lib/tdlib/types/input_passport_element/address.rb +8 -0
- data/lib/tdlib/types/input_passport_element/bank_statement.rb +8 -0
- data/lib/tdlib/types/input_passport_element/driver_license.rb +8 -0
- data/lib/tdlib/types/input_passport_element/email_address.rb +8 -0
- data/lib/tdlib/types/input_passport_element/identity_card.rb +8 -0
- data/lib/tdlib/types/input_passport_element/internal_passport.rb +8 -0
- data/lib/tdlib/types/input_passport_element/passport.rb +8 -0
- data/lib/tdlib/types/input_passport_element/passport_registration.rb +8 -0
- data/lib/tdlib/types/input_passport_element/personal_details.rb +8 -0
- data/lib/tdlib/types/input_passport_element/phone_number.rb +8 -0
- data/lib/tdlib/types/input_passport_element/rental_agreement.rb +8 -0
- data/lib/tdlib/types/input_passport_element/temporary_registration.rb +8 -0
- data/lib/tdlib/types/input_passport_element/utility_bill.rb +8 -0
- data/lib/tdlib/types/input_passport_element_error.rb +12 -0
- data/lib/tdlib/types/input_passport_element_error_source.rb +18 -0
- data/lib/tdlib/types/input_passport_element_error_source/data_field.rb +11 -0
- data/lib/tdlib/types/input_passport_element_error_source/file.rb +9 -0
- data/lib/tdlib/types/input_passport_element_error_source/files.rb +9 -0
- data/lib/tdlib/types/input_passport_element_error_source/front_side.rb +9 -0
- data/lib/tdlib/types/input_passport_element_error_source/reverse_side.rb +9 -0
- data/lib/tdlib/types/input_passport_element_error_source/selfie.rb +9 -0
- data/lib/tdlib/types/input_passport_element_error_source/translation_file.rb +9 -0
- data/lib/tdlib/types/input_passport_element_error_source/translation_files.rb +9 -0
- data/lib/tdlib/types/input_passport_element_error_source/unspecified.rb +9 -0
- data/lib/tdlib/types/input_personal_document.rb +11 -0
- data/lib/tdlib/types/input_sticker.rb +11 -0
- data/lib/tdlib/types/input_sticker/animated.rb +12 -0
- data/lib/tdlib/types/input_sticker/static.rb +14 -0
- data/lib/tdlib/types/input_thumbnail.rb +16 -0
- data/lib/tdlib/types/invoice.rb +31 -0
- data/lib/tdlib/types/json_object_member.rb +10 -0
- data/lib/tdlib/types/json_value.rb +15 -0
- data/lib/tdlib/types/json_value/array.rb +8 -0
- data/lib/tdlib/types/json_value/boolean.rb +8 -0
- data/lib/tdlib/types/json_value/null.rb +5 -0
- data/lib/tdlib/types/json_value/number.rb +8 -0
- data/lib/tdlib/types/json_value/object.rb +8 -0
- data/lib/tdlib/types/json_value/string.rb +8 -0
- data/lib/tdlib/types/keyboard_button.rb +10 -0
- data/lib/tdlib/types/keyboard_button_type.rb +13 -0
- data/lib/tdlib/types/keyboard_button_type/request_location.rb +5 -0
- data/lib/tdlib/types/keyboard_button_type/request_phone_number.rb +5 -0
- data/lib/tdlib/types/keyboard_button_type/request_poll.rb +10 -0
- data/lib/tdlib/types/keyboard_button_type/text.rb +5 -0
- data/lib/tdlib/types/labeled_price_part.rb +10 -0
- data/lib/tdlib/types/language_pack_info.rb +35 -0
- data/lib/tdlib/types/language_pack_string.rb +10 -0
- data/lib/tdlib/types/language_pack_string_value.rb +12 -0
- data/lib/tdlib/types/language_pack_string_value/deleted.rb +5 -0
- data/lib/tdlib/types/language_pack_string_value/ordinary.rb +8 -0
- data/lib/tdlib/types/language_pack_string_value/pluralized.rb +19 -0
- data/lib/tdlib/types/language_pack_strings.rb +8 -0
- data/lib/tdlib/types/local_file.rb +28 -0
- data/lib/tdlib/types/localization_target_info.rb +8 -0
- data/lib/tdlib/types/location.rb +14 -0
- data/lib/tdlib/types/log_stream.rb +12 -0
- data/lib/tdlib/types/log_stream/default.rb +5 -0
- data/lib/tdlib/types/log_stream/empty.rb +5 -0
- data/lib/tdlib/types/log_stream/file.rb +14 -0
- data/lib/tdlib/types/log_tags.rb +8 -0
- data/lib/tdlib/types/log_verbosity_level.rb +8 -0
- data/lib/tdlib/types/login_url_info.rb +11 -0
- data/lib/tdlib/types/login_url_info/open.rb +10 -0
- data/lib/tdlib/types/login_url_info/request_confirmation.rb +15 -0
- data/lib/tdlib/types/mask_point.rb +13 -0
- data/lib/tdlib/types/mask_point/chin.rb +5 -0
- data/lib/tdlib/types/mask_point/eyes.rb +5 -0
- data/lib/tdlib/types/mask_point/forehead.rb +5 -0
- data/lib/tdlib/types/mask_point/mouth.rb +5 -0
- data/lib/tdlib/types/mask_position.rb +17 -0
- data/lib/tdlib/types/message.rb +79 -0
- data/lib/tdlib/types/message_content.rb +55 -0
- data/lib/tdlib/types/message_content/animation.rb +13 -0
- data/lib/tdlib/types/message_content/audio.rb +10 -0
- data/lib/tdlib/types/message_content/basic_group_chat_create.rb +10 -0
- data/lib/tdlib/types/message_content/call.rb +12 -0
- data/lib/tdlib/types/message_content/chat_add_members.rb +8 -0
- data/lib/tdlib/types/message_content/chat_change_photo.rb +8 -0
- data/lib/tdlib/types/message_content/chat_change_title.rb +8 -0
- data/lib/tdlib/types/message_content/chat_delete_member.rb +8 -0
- data/lib/tdlib/types/message_content/chat_delete_photo.rb +5 -0
- data/lib/tdlib/types/message_content/chat_join_by_link.rb +5 -0
- data/lib/tdlib/types/message_content/chat_set_ttl.rb +8 -0
- data/lib/tdlib/types/message_content/chat_upgrade_from.rb +10 -0
- data/lib/tdlib/types/message_content/chat_upgrade_to.rb +8 -0
- data/lib/tdlib/types/message_content/contact.rb +8 -0
- data/lib/tdlib/types/message_content/contact_registered.rb +5 -0
- data/lib/tdlib/types/message_content/custom_service_action.rb +8 -0
- data/lib/tdlib/types/message_content/dice.rb +23 -0
- data/lib/tdlib/types/message_content/document.rb +10 -0
- data/lib/tdlib/types/message_content/expired_photo.rb +5 -0
- data/lib/tdlib/types/message_content/expired_video.rb +5 -0
- data/lib/tdlib/types/message_content/game.rb +8 -0
- data/lib/tdlib/types/message_content/game_score.rb +13 -0
- data/lib/tdlib/types/message_content/invite_voice_chat_participants.rb +11 -0
- data/lib/tdlib/types/message_content/invoice.rb +26 -0
- data/lib/tdlib/types/message_content/location.rb +22 -0
- data/lib/tdlib/types/message_content/passport_data_received.rb +10 -0
- data/lib/tdlib/types/message_content/passport_data_sent.rb +8 -0
- data/lib/tdlib/types/message_content/payment_successful.rb +15 -0
- data/lib/tdlib/types/message_content/payment_successful_bot.rb +21 -0
- data/lib/tdlib/types/message_content/photo.rb +12 -0
- data/lib/tdlib/types/message_content/pin_message.rb +8 -0
- data/lib/tdlib/types/message_content/poll.rb +8 -0
- data/lib/tdlib/types/message_content/proximity_alert_triggered.rb +12 -0
- data/lib/tdlib/types/message_content/screenshot_taken.rb +5 -0
- data/lib/tdlib/types/message_content/sticker.rb +8 -0
- data/lib/tdlib/types/message_content/supergroup_chat_create.rb +8 -0
- data/lib/tdlib/types/message_content/text.rb +10 -0
- data/lib/tdlib/types/message_content/unsupported.rb +5 -0
- data/lib/tdlib/types/message_content/venue.rb +8 -0
- data/lib/tdlib/types/message_content/video.rb +13 -0
- data/lib/tdlib/types/message_content/video_note.rb +13 -0
- data/lib/tdlib/types/message_content/voice_chat_ended.rb +8 -0
- data/lib/tdlib/types/message_content/voice_chat_scheduled.rb +12 -0
- data/lib/tdlib/types/message_content/voice_chat_started.rb +9 -0
- data/lib/tdlib/types/message_content/voice_note.rb +12 -0
- data/lib/tdlib/types/message_content/website_connected.rb +8 -0
- data/lib/tdlib/types/message_copy_options.rb +17 -0
- data/lib/tdlib/types/message_file_type.rb +12 -0
- data/lib/tdlib/types/message_file_type/group.rb +8 -0
- data/lib/tdlib/types/message_file_type/private.rb +8 -0
- data/lib/tdlib/types/message_file_type/unknown.rb +5 -0
- data/lib/tdlib/types/message_forward_info.rb +21 -0
- data/lib/tdlib/types/message_forward_origin.rb +14 -0
- data/lib/tdlib/types/message_forward_origin/channel.rb +12 -0
- data/lib/tdlib/types/message_forward_origin/chat.rb +10 -0
- data/lib/tdlib/types/message_forward_origin/hidden_user.rb +8 -0
- data/lib/tdlib/types/message_forward_origin/message_import.rb +8 -0
- data/lib/tdlib/types/message_forward_origin/user.rb +8 -0
- data/lib/tdlib/types/message_interaction_info.rb +15 -0
- data/lib/tdlib/types/message_link.rb +10 -0
- data/lib/tdlib/types/message_link_info.rb +16 -0
- data/lib/tdlib/types/message_reply_info.rb +17 -0
- data/lib/tdlib/types/message_scheduling_state.rb +11 -0
- data/lib/tdlib/types/message_scheduling_state/send_at_date.rb +9 -0
- data/lib/tdlib/types/message_scheduling_state/send_when_online.rb +6 -0
- data/lib/tdlib/types/message_send_options.rb +13 -0
- data/lib/tdlib/types/message_sender.rb +11 -0
- data/lib/tdlib/types/message_sender/chat.rb +8 -0
- data/lib/tdlib/types/message_sender/user.rb +8 -0
- data/lib/tdlib/types/message_senders.rb +10 -0
- data/lib/tdlib/types/message_sending_state.rb +11 -0
- data/lib/tdlib/types/message_sending_state/failed.rb +15 -0
- data/lib/tdlib/types/message_sending_state/pending.rb +5 -0
- data/lib/tdlib/types/message_statistics.rb +9 -0
- data/lib/tdlib/types/message_thread_info.rb +17 -0
- data/lib/tdlib/types/messages.rb +10 -0
- data/lib/tdlib/types/minithumbnail.rb +12 -0
- data/lib/tdlib/types/network_statistics.rb +10 -0
- data/lib/tdlib/types/network_statistics_entry.rb +11 -0
- data/lib/tdlib/types/network_statistics_entry/call.rb +15 -0
- data/lib/tdlib/types/network_statistics_entry/file.rb +15 -0
- data/lib/tdlib/types/network_type.rb +14 -0
- data/lib/tdlib/types/network_type/mobile.rb +5 -0
- data/lib/tdlib/types/network_type/mobile_roaming.rb +5 -0
- data/lib/tdlib/types/network_type/none.rb +5 -0
- data/lib/tdlib/types/network_type/other.rb +5 -0
- data/lib/tdlib/types/network_type/wi_fi.rb +5 -0
- data/lib/tdlib/types/notification.rb +14 -0
- data/lib/tdlib/types/notification_group.rb +16 -0
- data/lib/tdlib/types/notification_group_type.rb +13 -0
- data/lib/tdlib/types/notification_group_type/calls.rb +5 -0
- data/lib/tdlib/types/notification_group_type/mentions.rb +6 -0
- data/lib/tdlib/types/notification_group_type/messages.rb +6 -0
- data/lib/tdlib/types/notification_group_type/secret_chat.rb +5 -0
- data/lib/tdlib/types/notification_settings_scope.rb +12 -0
- data/lib/tdlib/types/notification_settings_scope/channel_chats.rb +5 -0
- data/lib/tdlib/types/notification_settings_scope/group_chats.rb +6 -0
- data/lib/tdlib/types/notification_settings_scope/private_chats.rb +6 -0
- data/lib/tdlib/types/notification_type.rb +13 -0
- data/lib/tdlib/types/notification_type/new_call.rb +8 -0
- data/lib/tdlib/types/notification_type/new_message.rb +8 -0
- data/lib/tdlib/types/notification_type/new_push_message.rb +19 -0
- data/lib/tdlib/types/notification_type/new_secret_chat.rb +5 -0
- data/lib/tdlib/types/ok.rb +5 -0
- data/lib/tdlib/types/option_value.rb +13 -0
- data/lib/tdlib/types/option_value/boolean.rb +8 -0
- data/lib/tdlib/types/option_value/empty.rb +5 -0
- data/lib/tdlib/types/option_value/integer.rb +8 -0
- data/lib/tdlib/types/option_value/string.rb +8 -0
- data/lib/tdlib/types/order_info.rb +14 -0
- data/lib/tdlib/types/page_block.rb +38 -0
- data/lib/tdlib/types/page_block/anchor.rb +8 -0
- data/lib/tdlib/types/page_block/animation.rb +12 -0
- data/lib/tdlib/types/page_block/audio.rb +10 -0
- data/lib/tdlib/types/page_block/author_date.rb +10 -0
- data/lib/tdlib/types/page_block/block_quote.rb +10 -0
- data/lib/tdlib/types/page_block/chat_link.rb +12 -0
- data/lib/tdlib/types/page_block/collage.rb +10 -0
- data/lib/tdlib/types/page_block/cover.rb +8 -0
- data/lib/tdlib/types/page_block/details.rb +12 -0
- data/lib/tdlib/types/page_block/divider.rb +5 -0
- data/lib/tdlib/types/page_block/embedded.rb +22 -0
- data/lib/tdlib/types/page_block/embedded_post.rb +18 -0
- data/lib/tdlib/types/page_block/footer.rb +8 -0
- data/lib/tdlib/types/page_block/header.rb +8 -0
- data/lib/tdlib/types/page_block/kicker.rb +8 -0
- data/lib/tdlib/types/page_block/list.rb +8 -0
- data/lib/tdlib/types/page_block/map.rb +16 -0
- data/lib/tdlib/types/page_block/paragraph.rb +8 -0
- data/lib/tdlib/types/page_block/photo.rb +12 -0
- data/lib/tdlib/types/page_block/preformatted.rb +10 -0
- data/lib/tdlib/types/page_block/pull_quote.rb +10 -0
- data/lib/tdlib/types/page_block/related_articles.rb +10 -0
- data/lib/tdlib/types/page_block/slideshow.rb +10 -0
- data/lib/tdlib/types/page_block/subheader.rb +8 -0
- data/lib/tdlib/types/page_block/subtitle.rb +8 -0
- data/lib/tdlib/types/page_block/table.rb +14 -0
- data/lib/tdlib/types/page_block/title.rb +8 -0
- data/lib/tdlib/types/page_block/video.rb +14 -0
- data/lib/tdlib/types/page_block/voice_note.rb +10 -0
- data/lib/tdlib/types/page_block_caption.rb +10 -0
- data/lib/tdlib/types/page_block_horizontal_alignment.rb +12 -0
- data/lib/tdlib/types/page_block_horizontal_alignment/center.rb +5 -0
- data/lib/tdlib/types/page_block_horizontal_alignment/left.rb +5 -0
- data/lib/tdlib/types/page_block_horizontal_alignment/right.rb +5 -0
- data/lib/tdlib/types/page_block_list_item.rb +10 -0
- data/lib/tdlib/types/page_block_related_article.rb +18 -0
- data/lib/tdlib/types/page_block_table_cell.rb +19 -0
- data/lib/tdlib/types/page_block_vertical_alignment.rb +12 -0
- data/lib/tdlib/types/page_block_vertical_alignment/bottom.rb +5 -0
- data/lib/tdlib/types/page_block_vertical_alignment/middle.rb +5 -0
- data/lib/tdlib/types/page_block_vertical_alignment/top.rb +5 -0
- data/lib/tdlib/types/passport_authorization_form.rb +13 -0
- data/lib/tdlib/types/passport_element.rb +22 -0
- data/lib/tdlib/types/passport_element/address.rb +8 -0
- data/lib/tdlib/types/passport_element/bank_statement.rb +8 -0
- data/lib/tdlib/types/passport_element/driver_license.rb +8 -0
- data/lib/tdlib/types/passport_element/email_address.rb +8 -0
- data/lib/tdlib/types/passport_element/identity_card.rb +8 -0
- data/lib/tdlib/types/passport_element/internal_passport.rb +8 -0
- data/lib/tdlib/types/passport_element/passport.rb +8 -0
- data/lib/tdlib/types/passport_element/passport_registration.rb +8 -0
- data/lib/tdlib/types/passport_element/personal_details.rb +8 -0
- data/lib/tdlib/types/passport_element/phone_number.rb +8 -0
- data/lib/tdlib/types/passport_element/rental_agreement.rb +8 -0
- data/lib/tdlib/types/passport_element/temporary_registration.rb +8 -0
- data/lib/tdlib/types/passport_element/utility_bill.rb +8 -0
- data/lib/tdlib/types/passport_element_error.rb +12 -0
- data/lib/tdlib/types/passport_element_error_source.rb +18 -0
- data/lib/tdlib/types/passport_element_error_source/data_field.rb +9 -0
- data/lib/tdlib/types/passport_element_error_source/file.rb +9 -0
- data/lib/tdlib/types/passport_element_error_source/files.rb +6 -0
- data/lib/tdlib/types/passport_element_error_source/front_side.rb +6 -0
- data/lib/tdlib/types/passport_element_error_source/reverse_side.rb +6 -0
- data/lib/tdlib/types/passport_element_error_source/selfie.rb +6 -0
- data/lib/tdlib/types/passport_element_error_source/translation_file.rb +9 -0
- data/lib/tdlib/types/passport_element_error_source/translation_files.rb +6 -0
- data/lib/tdlib/types/passport_element_error_source/unspecified.rb +6 -0
- data/lib/tdlib/types/passport_element_type.rb +22 -0
- data/lib/tdlib/types/passport_element_type/address.rb +5 -0
- data/lib/tdlib/types/passport_element_type/bank_statement.rb +5 -0
- data/lib/tdlib/types/passport_element_type/driver_license.rb +5 -0
- data/lib/tdlib/types/passport_element_type/email_address.rb +5 -0
- data/lib/tdlib/types/passport_element_type/identity_card.rb +5 -0
- data/lib/tdlib/types/passport_element_type/internal_passport.rb +5 -0
- data/lib/tdlib/types/passport_element_type/passport.rb +5 -0
- data/lib/tdlib/types/passport_element_type/passport_registration.rb +5 -0
- data/lib/tdlib/types/passport_element_type/personal_details.rb +5 -0
- data/lib/tdlib/types/passport_element_type/phone_number.rb +5 -0
- data/lib/tdlib/types/passport_element_type/rental_agreement.rb +5 -0
- data/lib/tdlib/types/passport_element_type/temporary_registration.rb +5 -0
- data/lib/tdlib/types/passport_element_type/utility_bill.rb +5 -0
- data/lib/tdlib/types/passport_elements.rb +8 -0
- data/lib/tdlib/types/passport_elements_with_errors.rb +10 -0
- data/lib/tdlib/types/passport_required_element.rb +9 -0
- data/lib/tdlib/types/passport_suitable_element.rb +15 -0
- data/lib/tdlib/types/password_state.rb +17 -0
- data/lib/tdlib/types/payment_form.rb +29 -0
- data/lib/tdlib/types/payment_form_theme.rb +18 -0
- data/lib/tdlib/types/payment_receipt.rb +28 -0
- data/lib/tdlib/types/payment_result.rb +11 -0
- data/lib/tdlib/types/payments_provider_stripe.rb +14 -0
- data/lib/tdlib/types/personal_details.rb +26 -0
- data/lib/tdlib/types/personal_document.rb +11 -0
- data/lib/tdlib/types/phone_number_authentication_settings.rb +16 -0
- data/lib/tdlib/types/phone_number_info.rb +14 -0
- data/lib/tdlib/types/photo.rb +13 -0
- data/lib/tdlib/types/photo_size.rb +17 -0
- data/lib/tdlib/types/point.rb +10 -0
- data/lib/tdlib/types/poll.rb +26 -0
- data/lib/tdlib/types/poll_option.rb +16 -0
- data/lib/tdlib/types/poll_type.rb +11 -0
- data/lib/tdlib/types/poll_type/quiz.rb +11 -0
- data/lib/tdlib/types/poll_type/regular.rb +8 -0
- data/lib/tdlib/types/profile_photo.rb +19 -0
- data/lib/tdlib/types/proxies.rb +8 -0
- data/lib/tdlib/types/proxy.rb +18 -0
- data/lib/tdlib/types/proxy_type.rb +12 -0
- data/lib/tdlib/types/proxy_type/http.rb +13 -0
- data/lib/tdlib/types/proxy_type/mtproto.rb +8 -0
- data/lib/tdlib/types/proxy_type/socks5.rb +10 -0
- data/lib/tdlib/types/public_chat_type.rb +11 -0
- data/lib/tdlib/types/public_chat_type/has_username.rb +5 -0
- data/lib/tdlib/types/public_chat_type/is_location_based.rb +5 -0
- data/lib/tdlib/types/push_message_content.rb +35 -0
- data/lib/tdlib/types/push_message_content/animation.rb +12 -0
- data/lib/tdlib/types/push_message_content/audio.rb +10 -0
- data/lib/tdlib/types/push_message_content/basic_group_chat_create.rb +5 -0
- data/lib/tdlib/types/push_message_content/chat_add_members.rb +12 -0
- data/lib/tdlib/types/push_message_content/chat_change_photo.rb +5 -0
- data/lib/tdlib/types/push_message_content/chat_change_title.rb +8 -0
- data/lib/tdlib/types/push_message_content/chat_delete_member.rb +12 -0
- data/lib/tdlib/types/push_message_content/chat_join_by_link.rb +5 -0
- data/lib/tdlib/types/push_message_content/contact.rb +10 -0
- data/lib/tdlib/types/push_message_content/contact_registered.rb +5 -0
- data/lib/tdlib/types/push_message_content/document.rb +10 -0
- data/lib/tdlib/types/push_message_content/game.rb +10 -0
- data/lib/tdlib/types/push_message_content/game_score.rb +12 -0
- data/lib/tdlib/types/push_message_content/hidden.rb +8 -0
- data/lib/tdlib/types/push_message_content/invoice.rb +10 -0
- data/lib/tdlib/types/push_message_content/location.rb +10 -0
- data/lib/tdlib/types/push_message_content/media_album.rb +16 -0
- data/lib/tdlib/types/push_message_content/message_forwards.rb +8 -0
- data/lib/tdlib/types/push_message_content/photo.rb +14 -0
- data/lib/tdlib/types/push_message_content/poll.rb +12 -0
- data/lib/tdlib/types/push_message_content/screenshot_taken.rb +5 -0
- data/lib/tdlib/types/push_message_content/sticker.rb +12 -0
- data/lib/tdlib/types/push_message_content/text.rb +10 -0
- data/lib/tdlib/types/push_message_content/video.rb +14 -0
- data/lib/tdlib/types/push_message_content/video_note.rb +10 -0
- data/lib/tdlib/types/push_message_content/voice_note.rb +10 -0
- data/lib/tdlib/types/push_receiver_id.rb +9 -0
- data/lib/tdlib/types/recommended_chat_filter.rb +10 -0
- data/lib/tdlib/types/recommended_chat_filters.rb +8 -0
- data/lib/tdlib/types/recovery_email_address.rb +8 -0
- data/lib/tdlib/types/remote_file.rb +27 -0
- data/lib/tdlib/types/reply_markup.rb +13 -0
- data/lib/tdlib/types/reply_markup/force_reply.rb +10 -0
- data/lib/tdlib/types/reply_markup/inline_keyboard.rb +8 -0
- data/lib/tdlib/types/reply_markup/remove_keyboard.rb +11 -0
- data/lib/tdlib/types/reply_markup/show_keyboard.rb +16 -0
- data/lib/tdlib/types/rich_text.rb +26 -0
- data/lib/tdlib/types/rich_text/anchor.rb +8 -0
- data/lib/tdlib/types/rich_text/anchor_link.rb +13 -0
- data/lib/tdlib/types/rich_text/bold.rb +8 -0
- data/lib/tdlib/types/rich_text/email_address.rb +10 -0
- data/lib/tdlib/types/rich_text/fixed.rb +8 -0
- data/lib/tdlib/types/rich_text/icon.rb +13 -0
- data/lib/tdlib/types/rich_text/italic.rb +8 -0
- data/lib/tdlib/types/rich_text/marked.rb +8 -0
- data/lib/tdlib/types/rich_text/phone_number.rb +10 -0
- data/lib/tdlib/types/rich_text/plain.rb +8 -0
- data/lib/tdlib/types/rich_text/reference.rb +13 -0
- data/lib/tdlib/types/rich_text/s.rb +8 -0
- data/lib/tdlib/types/rich_text/strikethrough.rb +8 -0
- data/lib/tdlib/types/rich_text/subscript.rb +8 -0
- data/lib/tdlib/types/rich_text/superscript.rb +8 -0
- data/lib/tdlib/types/rich_text/underline.rb +8 -0
- data/lib/tdlib/types/rich_text/url.rb +12 -0
- data/lib/tdlib/types/saved_credentials.rb +10 -0
- data/lib/tdlib/types/scope_notification_settings.rb +19 -0
- data/lib/tdlib/types/search_messages_filter.rb +27 -0
- data/lib/tdlib/types/search_messages_filter/animation.rb +5 -0
- data/lib/tdlib/types/search_messages_filter/audio.rb +5 -0
- data/lib/tdlib/types/search_messages_filter/call.rb +5 -0
- data/lib/tdlib/types/search_messages_filter/chat_photo.rb +5 -0
- data/lib/tdlib/types/search_messages_filter/document.rb +5 -0
- data/lib/tdlib/types/search_messages_filter/empty.rb +5 -0
- data/lib/tdlib/types/search_messages_filter/failed_to_send.rb +6 -0
- data/lib/tdlib/types/search_messages_filter/mention.rb +5 -0
- data/lib/tdlib/types/search_messages_filter/missed_call.rb +5 -0
- data/lib/tdlib/types/search_messages_filter/photo.rb +5 -0
- data/lib/tdlib/types/search_messages_filter/photo_and_video.rb +5 -0
- data/lib/tdlib/types/search_messages_filter/pinned.rb +5 -0
- data/lib/tdlib/types/search_messages_filter/unread_mention.rb +7 -0
- data/lib/tdlib/types/search_messages_filter/url.rb +5 -0
- data/lib/tdlib/types/search_messages_filter/video.rb +5 -0
- data/lib/tdlib/types/search_messages_filter/video_note.rb +5 -0
- data/lib/tdlib/types/search_messages_filter/voice_and_video_note.rb +5 -0
- data/lib/tdlib/types/search_messages_filter/voice_note.rb +5 -0
- data/lib/tdlib/types/seconds.rb +8 -0
- data/lib/tdlib/types/secret_chat.rb +25 -0
- data/lib/tdlib/types/secret_chat_state.rb +12 -0
- data/lib/tdlib/types/secret_chat_state/closed.rb +5 -0
- data/lib/tdlib/types/secret_chat_state/pending.rb +5 -0
- data/lib/tdlib/types/secret_chat_state/ready.rb +5 -0
- data/lib/tdlib/types/session.rb +42 -0
- data/lib/tdlib/types/sessions.rb +8 -0
- data/lib/tdlib/types/shipping_option.rb +13 -0
- data/lib/tdlib/types/statistical_graph.rb +12 -0
- data/lib/tdlib/types/statistical_graph/async.rb +8 -0
- data/lib/tdlib/types/statistical_graph/data.rb +10 -0
- data/lib/tdlib/types/statistical_graph/error.rb +8 -0
- data/lib/tdlib/types/statistical_value.rb +12 -0
- data/lib/tdlib/types/sticker.rb +28 -0
- data/lib/tdlib/types/sticker_set.rb +39 -0
- data/lib/tdlib/types/sticker_set_info.rb +38 -0
- data/lib/tdlib/types/sticker_sets.rb +10 -0
- data/lib/tdlib/types/stickers.rb +8 -0
- data/lib/tdlib/types/storage_statistics.rb +12 -0
- data/lib/tdlib/types/storage_statistics_by_chat.rb +14 -0
- data/lib/tdlib/types/storage_statistics_by_file_type.rb +12 -0
- data/lib/tdlib/types/storage_statistics_fast.rb +16 -0
- data/lib/tdlib/types/suggested_action.rb +13 -0
- data/lib/tdlib/types/suggested_action/check_phone_number.rb +5 -0
- data/lib/tdlib/types/suggested_action/convert_to_broadcast_group.rb +8 -0
- data/lib/tdlib/types/suggested_action/enable_archive_and_mute_new_chats.rb +5 -0
- data/lib/tdlib/types/suggested_action/see_ticks_hint.rb +5 -0
- data/lib/tdlib/types/supergroup.rb +50 -0
- data/lib/tdlib/types/supergroup_full_info.rb +56 -0
- data/lib/tdlib/types/supergroup_members_filter.rb +17 -0
- data/lib/tdlib/types/supergroup_members_filter/administrators.rb +5 -0
- data/lib/tdlib/types/supergroup_members_filter/banned.rb +8 -0
- data/lib/tdlib/types/supergroup_members_filter/bots.rb +5 -0
- data/lib/tdlib/types/supergroup_members_filter/contacts.rb +8 -0
- data/lib/tdlib/types/supergroup_members_filter/mention.rb +10 -0
- data/lib/tdlib/types/supergroup_members_filter/recent.rb +5 -0
- data/lib/tdlib/types/supergroup_members_filter/restricted.rb +8 -0
- data/lib/tdlib/types/supergroup_members_filter/search.rb +8 -0
- data/lib/tdlib/types/t_me_url.rb +10 -0
- data/lib/tdlib/types/t_me_url_type.rb +13 -0
- data/lib/tdlib/types/t_me_url_type/chat_invite.rb +8 -0
- data/lib/tdlib/types/t_me_url_type/sticker_set.rb +8 -0
- data/lib/tdlib/types/t_me_url_type/supergroup.rb +8 -0
- data/lib/tdlib/types/t_me_url_type/user.rb +8 -0
- data/lib/tdlib/types/t_me_urls.rb +8 -0
- data/lib/tdlib/types/tdlib_parameters.rb +47 -0
- data/lib/tdlib/types/temporary_password_state.rb +10 -0
- data/lib/tdlib/types/terms_of_service.rb +12 -0
- data/lib/tdlib/types/text.rb +8 -0
- data/lib/tdlib/types/text_entities.rb +8 -0
- data/lib/tdlib/types/text_entity.rb +12 -0
- data/lib/tdlib/types/text_entity_type.rb +26 -0
- data/lib/tdlib/types/text_entity_type/bank_card_number.rb +6 -0
- data/lib/tdlib/types/text_entity_type/bold.rb +5 -0
- data/lib/tdlib/types/text_entity_type/bot_command.rb +6 -0
- data/lib/tdlib/types/text_entity_type/cashtag.rb +6 -0
- data/lib/tdlib/types/text_entity_type/code.rb +5 -0
- data/lib/tdlib/types/text_entity_type/email_address.rb +5 -0
- data/lib/tdlib/types/text_entity_type/hashtag.rb +5 -0
- data/lib/tdlib/types/text_entity_type/italic.rb +5 -0
- data/lib/tdlib/types/text_entity_type/mention.rb +5 -0
- data/lib/tdlib/types/text_entity_type/mention_name.rb +8 -0
- data/lib/tdlib/types/text_entity_type/phone_number.rb +5 -0
- data/lib/tdlib/types/text_entity_type/pre.rb +5 -0
- data/lib/tdlib/types/text_entity_type/pre_code.rb +8 -0
- data/lib/tdlib/types/text_entity_type/strikethrough.rb +5 -0
- data/lib/tdlib/types/text_entity_type/text_url.rb +8 -0
- data/lib/tdlib/types/text_entity_type/underline.rb +5 -0
- data/lib/tdlib/types/text_entity_type/url.rb +5 -0
- data/lib/tdlib/types/text_parse_mode.rb +11 -0
- data/lib/tdlib/types/text_parse_mode/html.rb +6 -0
- data/lib/tdlib/types/text_parse_mode/markdown.rb +9 -0
- data/lib/tdlib/types/thumbnail.rb +14 -0
- data/lib/tdlib/types/thumbnail_format.rb +15 -0
- data/lib/tdlib/types/thumbnail_format/gif.rb +6 -0
- data/lib/tdlib/types/thumbnail_format/jpeg.rb +5 -0
- data/lib/tdlib/types/thumbnail_format/mpeg4.rb +6 -0
- data/lib/tdlib/types/thumbnail_format/png.rb +6 -0
- data/lib/tdlib/types/thumbnail_format/tgs.rb +6 -0
- data/lib/tdlib/types/thumbnail_format/webp.rb +6 -0
- data/lib/tdlib/types/top_chat_category.rb +16 -0
- data/lib/tdlib/types/top_chat_category/bots.rb +5 -0
- data/lib/tdlib/types/top_chat_category/calls.rb +5 -0
- data/lib/tdlib/types/top_chat_category/channels.rb +5 -0
- data/lib/tdlib/types/top_chat_category/forward_chats.rb +5 -0
- data/lib/tdlib/types/top_chat_category/groups.rb +5 -0
- data/lib/tdlib/types/top_chat_category/inline_bots.rb +5 -0
- data/lib/tdlib/types/top_chat_category/users.rb +5 -0
- data/lib/tdlib/types/update.rb +94 -0
- data/lib/tdlib/types/update/active_notifications.rb +10 -0
- data/lib/tdlib/types/update/animation_search_parameters.rb +10 -0
- data/lib/tdlib/types/update/authorization_state.rb +8 -0
- data/lib/tdlib/types/update/basic_group.rb +9 -0
- data/lib/tdlib/types/update/basic_group_full_info.rb +10 -0
- data/lib/tdlib/types/update/call.rb +8 -0
- data/lib/tdlib/types/update/chat_action_bar.rb +10 -0
- data/lib/tdlib/types/update/chat_default_disable_notification.rb +10 -0
- data/lib/tdlib/types/update/chat_draft_message.rb +14 -0
- data/lib/tdlib/types/update/chat_filters.rb +8 -0
- data/lib/tdlib/types/update/chat_has_scheduled_messages.rb +10 -0
- data/lib/tdlib/types/update/chat_is_blocked.rb +10 -0
- data/lib/tdlib/types/update/chat_is_marked_as_unread.rb +10 -0
- data/lib/tdlib/types/update/chat_last_message.rb +14 -0
- data/lib/tdlib/types/update/chat_member.rb +19 -0
- data/lib/tdlib/types/update/chat_message_ttl_setting.rb +10 -0
- data/lib/tdlib/types/update/chat_notification_settings.rb +10 -0
- data/lib/tdlib/types/update/chat_online_member_count.rb +12 -0
- data/lib/tdlib/types/update/chat_permissions.rb +10 -0
- data/lib/tdlib/types/update/chat_photo.rb +10 -0
- data/lib/tdlib/types/update/chat_position.rb +12 -0
- data/lib/tdlib/types/update/chat_read_inbox.rb +12 -0
- data/lib/tdlib/types/update/chat_read_outbox.rb +10 -0
- data/lib/tdlib/types/update/chat_reply_markup.rb +13 -0
- data/lib/tdlib/types/update/chat_title.rb +10 -0
- data/lib/tdlib/types/update/chat_unread_mention_count.rb +10 -0
- data/lib/tdlib/types/update/chat_voice_chat.rb +10 -0
- data/lib/tdlib/types/update/connection_state.rb +9 -0
- data/lib/tdlib/types/update/delete_messages.rb +16 -0
- data/lib/tdlib/types/update/dice_emojis.rb +8 -0
- data/lib/tdlib/types/update/favorite_stickers.rb +8 -0
- data/lib/tdlib/types/update/file.rb +8 -0
- data/lib/tdlib/types/update/file_generation_start.rb +17 -0
- data/lib/tdlib/types/update/file_generation_stop.rb +8 -0
- data/lib/tdlib/types/update/group_call.rb +8 -0
- data/lib/tdlib/types/update/group_call_participant.rb +12 -0
- data/lib/tdlib/types/update/have_pending_notifications.rb +13 -0
- data/lib/tdlib/types/update/installed_sticker_sets.rb +10 -0
- data/lib/tdlib/types/update/language_pack_strings.rb +12 -0
- data/lib/tdlib/types/update/message_content.rb +12 -0
- data/lib/tdlib/types/update/message_content_opened.rb +12 -0
- data/lib/tdlib/types/update/message_edited.rb +15 -0
- data/lib/tdlib/types/update/message_interaction_info.rb +13 -0
- data/lib/tdlib/types/update/message_is_pinned.rb +12 -0
- data/lib/tdlib/types/update/message_live_location_viewed.rb +11 -0
- data/lib/tdlib/types/update/message_mention_read.rb +12 -0
- data/lib/tdlib/types/update/message_send_acknowledged.rb +14 -0
- data/lib/tdlib/types/update/message_send_failed.rb +16 -0
- data/lib/tdlib/types/update/message_send_succeeded.rb +11 -0
- data/lib/tdlib/types/update/new_call_signaling_data.rb +10 -0
- data/lib/tdlib/types/update/new_callback_query.rb +18 -0
- data/lib/tdlib/types/update/new_chat.rb +10 -0
- data/lib/tdlib/types/update/new_chosen_inline_result.rb +16 -0
- data/lib/tdlib/types/update/new_custom_event.rb +8 -0
- data/lib/tdlib/types/update/new_custom_query.rb +12 -0
- data/lib/tdlib/types/update/new_inline_callback_query.rb +16 -0
- data/lib/tdlib/types/update/new_inline_query.rb +19 -0
- data/lib/tdlib/types/update/new_message.rb +8 -0
- data/lib/tdlib/types/update/new_pre_checkout_query.rb +22 -0
- data/lib/tdlib/types/update/new_shipping_query.rb +15 -0
- data/lib/tdlib/types/update/notification.rb +10 -0
- data/lib/tdlib/types/update/notification_group.rb +26 -0
- data/lib/tdlib/types/update/option.rb +10 -0
- data/lib/tdlib/types/update/poll.rb +8 -0
- data/lib/tdlib/types/update/poll_answer.rb +12 -0
- data/lib/tdlib/types/update/recent_stickers.rb +11 -0
- data/lib/tdlib/types/update/saved_animations.rb +8 -0
- data/lib/tdlib/types/update/scope_notification_settings.rb +10 -0
- data/lib/tdlib/types/update/secret_chat.rb +9 -0
- data/lib/tdlib/types/update/selected_background.rb +10 -0
- data/lib/tdlib/types/update/service_notification.rb +13 -0
- data/lib/tdlib/types/update/sticker_set.rb +8 -0
- data/lib/tdlib/types/update/suggested_actions.rb +10 -0
- data/lib/tdlib/types/update/supergroup.rb +9 -0
- data/lib/tdlib/types/update/supergroup_full_info.rb +10 -0
- data/lib/tdlib/types/update/terms_of_service.rb +12 -0
- data/lib/tdlib/types/update/trending_sticker_sets.rb +9 -0
- data/lib/tdlib/types/update/unread_chat_count.rb +20 -0
- data/lib/tdlib/types/update/unread_message_count.rb +13 -0
- data/lib/tdlib/types/update/user.rb +9 -0
- data/lib/tdlib/types/update/user_chat_action.rb +14 -0
- data/lib/tdlib/types/update/user_full_info.rb +10 -0
- data/lib/tdlib/types/update/user_privacy_setting_rules.rb +10 -0
- data/lib/tdlib/types/update/user_status.rb +10 -0
- data/lib/tdlib/types/update/users_nearby.rb +9 -0
- data/lib/tdlib/types/updates.rb +8 -0
- data/lib/tdlib/types/user.rb +44 -0
- data/lib/tdlib/types/user_full_info.rb +28 -0
- data/lib/tdlib/types/user_privacy_setting.rb +17 -0
- data/lib/tdlib/types/user_privacy_setting/allow_calls.rb +5 -0
- data/lib/tdlib/types/user_privacy_setting/allow_chat_invites.rb +5 -0
- data/lib/tdlib/types/user_privacy_setting/allow_finding_by_phone_number.rb +7 -0
- data/lib/tdlib/types/user_privacy_setting/allow_peer_to_peer_calls.rb +5 -0
- data/lib/tdlib/types/user_privacy_setting/show_link_in_forwarded_messages.rb +5 -0
- data/lib/tdlib/types/user_privacy_setting/show_phone_number.rb +5 -0
- data/lib/tdlib/types/user_privacy_setting/show_profile_photo.rb +5 -0
- data/lib/tdlib/types/user_privacy_setting/show_status.rb +5 -0
- data/lib/tdlib/types/user_privacy_setting_rule.rb +17 -0
- data/lib/tdlib/types/user_privacy_setting_rule/allow_all.rb +5 -0
- data/lib/tdlib/types/user_privacy_setting_rule/allow_chat_members.rb +8 -0
- data/lib/tdlib/types/user_privacy_setting_rule/allow_contacts.rb +5 -0
- data/lib/tdlib/types/user_privacy_setting_rule/allow_users.rb +8 -0
- data/lib/tdlib/types/user_privacy_setting_rule/restrict_all.rb +5 -0
- data/lib/tdlib/types/user_privacy_setting_rule/restrict_chat_members.rb +8 -0
- data/lib/tdlib/types/user_privacy_setting_rule/restrict_contacts.rb +5 -0
- data/lib/tdlib/types/user_privacy_setting_rule/restrict_users.rb +8 -0
- data/lib/tdlib/types/user_privacy_setting_rules.rb +11 -0
- data/lib/tdlib/types/user_status.rb +15 -0
- data/lib/tdlib/types/user_status/empty.rb +5 -0
- data/lib/tdlib/types/user_status/last_month.rb +5 -0
- data/lib/tdlib/types/user_status/last_week.rb +5 -0
- data/lib/tdlib/types/user_status/offline.rb +8 -0
- data/lib/tdlib/types/user_status/online.rb +8 -0
- data/lib/tdlib/types/user_status/recently.rb +5 -0
- data/lib/tdlib/types/user_type.rb +14 -0
- data/lib/tdlib/types/user_type/bot.rb +18 -0
- data/lib/tdlib/types/user_type/deleted.rb +7 -0
- data/lib/tdlib/types/user_type/regular.rb +5 -0
- data/lib/tdlib/types/user_type/unknown.rb +7 -0
- data/lib/tdlib/types/users.rb +10 -0
- data/lib/tdlib/types/validated_order_info.rb +11 -0
- data/lib/tdlib/types/vector_path_command.rb +11 -0
- data/lib/tdlib/types/vector_path_command/cubic_bezier_curve.rb +12 -0
- data/lib/tdlib/types/vector_path_command/line.rb +8 -0
- data/lib/tdlib/types/venue.rb +19 -0
- data/lib/tdlib/types/video.rb +28 -0
- data/lib/tdlib/types/video_note.rb +17 -0
- data/lib/tdlib/types/voice_chat.rb +14 -0
- data/lib/tdlib/types/voice_note.rb +16 -0
- data/lib/tdlib/types/web_page.rb +52 -0
- data/lib/tdlib/types/web_page_instant_view.rb +17 -0
- data/tdlib-schema.gemspec +43 -0
- metadata +1149 -0
@@ -0,0 +1,14 @@
|
|
1
|
+
module TD::Types
|
2
|
+
# Represents the type of a user.
|
3
|
+
# The following types are possible: regular users, deleted users and bots.
|
4
|
+
class UserType < Base
|
5
|
+
%w[
|
6
|
+
regular
|
7
|
+
deleted
|
8
|
+
bot
|
9
|
+
unknown
|
10
|
+
].each do |type|
|
11
|
+
autoload TD::Types.camelize(type), "tdlib/types/user_type/#{type}"
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
module TD::Types
|
2
|
+
# A bot (see https://core.telegram.org/bots).
|
3
|
+
#
|
4
|
+
# @attr can_join_groups [Boolean] True, if the bot can be invited to basic group and supergroup chats.
|
5
|
+
# @attr can_read_all_group_messages [Boolean] True, if the bot can read all messages in basic group or supergroup
|
6
|
+
# chats and not just those addressed to the bot.
|
7
|
+
# In private and channel chats a bot can always read all messages.
|
8
|
+
# @attr is_inline [Boolean] True, if the bot supports inline queries.
|
9
|
+
# @attr inline_query_placeholder [String] Placeholder for inline queries (displayed on the application input field).
|
10
|
+
# @attr need_location [Boolean] True, if the location of the user should be sent with every inline query to this bot.
|
11
|
+
class UserType::Bot < UserType
|
12
|
+
attribute :can_join_groups, TD::Types::Bool
|
13
|
+
attribute :can_read_all_group_messages, TD::Types::Bool
|
14
|
+
attribute :is_inline, TD::Types::Bool
|
15
|
+
attribute :inline_query_placeholder, TD::Types::String
|
16
|
+
attribute :need_location, TD::Types::Bool
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
module TD::Types
|
2
|
+
# No information on the user besides the user identifier is available, yet this user has not been deleted.
|
3
|
+
# This object is extremely rare and must be handled like a deleted user.
|
4
|
+
# It is not possible to perform any actions on users of this type.
|
5
|
+
class UserType::Unknown < UserType
|
6
|
+
end
|
7
|
+
end
|
@@ -0,0 +1,10 @@
|
|
1
|
+
module TD::Types
|
2
|
+
# Represents a list of users.
|
3
|
+
#
|
4
|
+
# @attr total_count [Integer] Approximate total count of users found.
|
5
|
+
# @attr user_ids [Array<Integer>] A list of user identifiers.
|
6
|
+
class Users < Base
|
7
|
+
attribute :total_count, TD::Types::Integer
|
8
|
+
attribute :user_ids, TD::Types::Array.of(TD::Types::Integer)
|
9
|
+
end
|
10
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
module TD::Types
|
2
|
+
# Contains a temporary identifier of validated order information, which is stored for one hour.
|
3
|
+
# Also contains the available shipping options.
|
4
|
+
#
|
5
|
+
# @attr order_info_id [String] Temporary identifier of the order information.
|
6
|
+
# @attr shipping_options [Array<TD::Types::ShippingOption>] Available shipping options.
|
7
|
+
class ValidatedOrderInfo < Base
|
8
|
+
attribute :order_info_id, TD::Types::String
|
9
|
+
attribute :shipping_options, TD::Types::Array.of(TD::Types::ShippingOption)
|
10
|
+
end
|
11
|
+
end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
module TD::Types
|
2
|
+
# A cubic Bézier curve to a given point.
|
3
|
+
#
|
4
|
+
# @attr start_control_point [TD::Types::Point] The start control point of the curve.
|
5
|
+
# @attr end_control_point [TD::Types::Point] The end control point of the curve.
|
6
|
+
# @attr end_point [TD::Types::Point] The end point of the curve.
|
7
|
+
class VectorPathCommand::CubicBezierCurve < VectorPathCommand
|
8
|
+
attribute :start_control_point, TD::Types::Point
|
9
|
+
attribute :end_control_point, TD::Types::Point
|
10
|
+
attribute :end_point, TD::Types::Point
|
11
|
+
end
|
12
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
module TD::Types
|
2
|
+
# Describes a venue.
|
3
|
+
#
|
4
|
+
# @attr location [TD::Types::Location] Venue location; as defined by the sender.
|
5
|
+
# @attr title [String] Venue name; as defined by the sender.
|
6
|
+
# @attr address [String] Venue address; as defined by the sender.
|
7
|
+
# @attr provider [String] Provider of the venue database; as defined by the sender.
|
8
|
+
# Currently only "foursquare" and "gplaces" (Google Places) need to be supported.
|
9
|
+
# @attr id [String] Identifier of the venue in the provider database; as defined by the sender.
|
10
|
+
# @attr type [String] Type of the venue in the provider database; as defined by the sender.
|
11
|
+
class Venue < Base
|
12
|
+
attribute :location, TD::Types::Location
|
13
|
+
attribute :title, TD::Types::String
|
14
|
+
attribute :address, TD::Types::String
|
15
|
+
attribute :provider, TD::Types::String
|
16
|
+
attribute :id, TD::Types::String
|
17
|
+
attribute :type, TD::Types::String
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
module TD::Types
|
2
|
+
# Describes a video file.
|
3
|
+
#
|
4
|
+
# @attr duration [Integer] Duration of the video, in seconds; as defined by the sender.
|
5
|
+
# @attr width [Integer] Video width; as defined by the sender.
|
6
|
+
# @attr height [Integer] Video height; as defined by the sender.
|
7
|
+
# @attr file_name [String] Original name of the file; as defined by the sender.
|
8
|
+
# @attr mime_type [String] MIME type of the file; as defined by the sender.
|
9
|
+
# @attr has_stickers [Boolean] True, if stickers were added to the video.
|
10
|
+
# The list of corresponding sticker sets can be received using getAttachedStickerSets.
|
11
|
+
# @attr supports_streaming [Boolean] True, if the video should be tried to be streamed.
|
12
|
+
# @attr minithumbnail [TD::Types::Minithumbnail, nil] Video minithumbnail; may be null.
|
13
|
+
# @attr thumbnail [TD::Types::Thumbnail, nil] Video thumbnail in JPEG or MPEG4 format; as defined by the sender; may
|
14
|
+
# be null.
|
15
|
+
# @attr video [TD::Types::File] File containing the video.
|
16
|
+
class Video < Base
|
17
|
+
attribute :duration, TD::Types::Integer
|
18
|
+
attribute :width, TD::Types::Integer
|
19
|
+
attribute :height, TD::Types::Integer
|
20
|
+
attribute :file_name, TD::Types::String
|
21
|
+
attribute :mime_type, TD::Types::String
|
22
|
+
attribute :has_stickers, TD::Types::Bool
|
23
|
+
attribute :supports_streaming, TD::Types::Bool
|
24
|
+
attribute :minithumbnail, TD::Types::Minithumbnail.optional.default(nil)
|
25
|
+
attribute :thumbnail, TD::Types::Thumbnail.optional.default(nil)
|
26
|
+
attribute :video, TD::Types::File
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
module TD::Types
|
2
|
+
# Describes a video note.
|
3
|
+
# The video must be equal in width and height, cropped to a circle, and stored in MPEG4 format.
|
4
|
+
#
|
5
|
+
# @attr duration [Integer] Duration of the video, in seconds; as defined by the sender.
|
6
|
+
# @attr length [Integer] Video width and height; as defined by the sender.
|
7
|
+
# @attr minithumbnail [TD::Types::Minithumbnail, nil] Video minithumbnail; may be null.
|
8
|
+
# @attr thumbnail [TD::Types::Thumbnail, nil] Video thumbnail in JPEG format; as defined by the sender; may be null.
|
9
|
+
# @attr video [TD::Types::File] File containing the video.
|
10
|
+
class VideoNote < Base
|
11
|
+
attribute :duration, TD::Types::Integer
|
12
|
+
attribute :length, TD::Types::Integer
|
13
|
+
attribute :minithumbnail, TD::Types::Minithumbnail.optional.default(nil)
|
14
|
+
attribute :thumbnail, TD::Types::Thumbnail.optional.default(nil)
|
15
|
+
attribute :video, TD::Types::File
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
module TD::Types
|
2
|
+
# Describes a voice chat.
|
3
|
+
#
|
4
|
+
# @attr group_call_id [Integer] Group call identifier of an active voice chat; 0 if none.
|
5
|
+
# Full informationa about the voice chat can be received through the method getGroupCall.
|
6
|
+
# @attr has_participants [Boolean] True, if the voice chat has participants.
|
7
|
+
# @attr default_participant_id [TD::Types::MessageSender, nil] Default group call participant identifier to join the
|
8
|
+
# voice chat; may be null.
|
9
|
+
class VoiceChat < Base
|
10
|
+
attribute :group_call_id, TD::Types::Integer
|
11
|
+
attribute :has_participants, TD::Types::Bool
|
12
|
+
attribute :default_participant_id, TD::Types::MessageSender.optional.default(nil)
|
13
|
+
end
|
14
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
module TD::Types
|
2
|
+
# Describes a voice note.
|
3
|
+
# The voice note must be encoded with the Opus codec, and stored inside an OGG container.
|
4
|
+
# Voice notes can have only a single audio channel.
|
5
|
+
#
|
6
|
+
# @attr duration [Integer] Duration of the voice note, in seconds; as defined by the sender.
|
7
|
+
# @attr waveform [String] A waveform representation of the voice note in 5-bit format.
|
8
|
+
# @attr mime_type [String] MIME type of the file; as defined by the sender.
|
9
|
+
# @attr voice [TD::Types::File] File containing the voice note.
|
10
|
+
class VoiceNote < Base
|
11
|
+
attribute :duration, TD::Types::Integer
|
12
|
+
attribute :waveform, TD::Types::String
|
13
|
+
attribute :mime_type, TD::Types::String
|
14
|
+
attribute :voice, TD::Types::File
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,52 @@
|
|
1
|
+
module TD::Types
|
2
|
+
# Describes a web page preview.
|
3
|
+
#
|
4
|
+
# @attr url [String] Original URL of the link.
|
5
|
+
# @attr display_url [String] URL to display.
|
6
|
+
# @attr type [String] Type of the web page.
|
7
|
+
# Can be: article, photo, audio, video, document, profile, app, or something else.
|
8
|
+
# @attr site_name [String] Short name of the site (e.g., Google Docs, App Store).
|
9
|
+
# @attr title [String] Title of the content.
|
10
|
+
# @attr description [TD::Types::FormattedText] Description of the content.
|
11
|
+
# @attr photo [TD::Types::Photo, nil] Image representing the content; may be null.
|
12
|
+
# @attr embed_url [String] URL to show in the embedded preview.
|
13
|
+
# @attr embed_type [String] MIME type of the embedded preview, (e.g., text/html or video/mp4).
|
14
|
+
# @attr embed_width [Integer] Width of the embedded preview.
|
15
|
+
# @attr embed_height [Integer] Height of the embedded preview.
|
16
|
+
# @attr duration [Integer] Duration of the content, in seconds.
|
17
|
+
# @attr author [String] Author of the content.
|
18
|
+
# @attr animation [TD::Types::Animation, nil] Preview of the content as an animation, if available; may be null.
|
19
|
+
# @attr audio [TD::Types::Audio, nil] Preview of the content as an audio file, if available; may be null.
|
20
|
+
# @attr document [TD::Types::Document, nil] Preview of the content as a document, if available (currently only
|
21
|
+
# available for small PDF files and ZIP archives); may be null.
|
22
|
+
# @attr sticker [TD::Types::Sticker, nil] Preview of the content as a sticker for small WEBP files, if available; may
|
23
|
+
# be null.
|
24
|
+
# @attr video [TD::Types::Video, nil] Preview of the content as a video, if available; may be null.
|
25
|
+
# @attr video_note [TD::Types::VideoNote, nil] Preview of the content as a video note, if available; may be null.
|
26
|
+
# @attr voice_note [TD::Types::VoiceNote, nil] Preview of the content as a voice note, if available; may be null.
|
27
|
+
# @attr instant_view_version [Integer] Version of instant view, available for the web page (currently can be 1 or 2),
|
28
|
+
# 0 if none.
|
29
|
+
class WebPage < Base
|
30
|
+
attribute :url, TD::Types::String
|
31
|
+
attribute :display_url, TD::Types::String
|
32
|
+
attribute :type, TD::Types::String
|
33
|
+
attribute :site_name, TD::Types::String
|
34
|
+
attribute :title, TD::Types::String
|
35
|
+
attribute :description, TD::Types::FormattedText
|
36
|
+
attribute :photo, TD::Types::Photo.optional.default(nil)
|
37
|
+
attribute :embed_url, TD::Types::String
|
38
|
+
attribute :embed_type, TD::Types::String
|
39
|
+
attribute :embed_width, TD::Types::Integer
|
40
|
+
attribute :embed_height, TD::Types::Integer
|
41
|
+
attribute :duration, TD::Types::Integer
|
42
|
+
attribute :author, TD::Types::String
|
43
|
+
attribute :animation, TD::Types::Animation.optional.default(nil)
|
44
|
+
attribute :audio, TD::Types::Audio.optional.default(nil)
|
45
|
+
attribute :document, TD::Types::Document.optional.default(nil)
|
46
|
+
attribute :sticker, TD::Types::Sticker.optional.default(nil)
|
47
|
+
attribute :video, TD::Types::Video.optional.default(nil)
|
48
|
+
attribute :video_note, TD::Types::VideoNote.optional.default(nil)
|
49
|
+
attribute :voice_note, TD::Types::VoiceNote.optional.default(nil)
|
50
|
+
attribute :instant_view_version, TD::Types::Integer
|
51
|
+
end
|
52
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
module TD::Types
|
2
|
+
# Describes an instant view page for a web page.
|
3
|
+
#
|
4
|
+
# @attr page_blocks [Array<TD::Types::PageBlock>] Content of the web page.
|
5
|
+
# @attr view_count [Integer] Number of the instant view views; 0 if unknown.
|
6
|
+
# @attr version [Integer] Version of the instant view, currently can be 1 or 2.
|
7
|
+
# @attr is_rtl [Boolean] True, if the instant view must be shown from right to left.
|
8
|
+
# @attr is_full [Boolean] True, if the instant view contains the full page.
|
9
|
+
# A network request might be needed to get the full web page instant view.
|
10
|
+
class WebPageInstantView < Base
|
11
|
+
attribute :page_blocks, TD::Types::Array.of(TD::Types::PageBlock)
|
12
|
+
attribute :view_count, TD::Types::Integer
|
13
|
+
attribute :version, TD::Types::Integer
|
14
|
+
attribute :is_rtl, TD::Types::Bool
|
15
|
+
attribute :is_full, TD::Types::Bool
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
Gem::Specification.new do |spec|
|
4
|
+
spec.name = "tdlib-schema"
|
5
|
+
spec.version = "1.7.0.1"
|
6
|
+
spec.authors = ["Southbridge"]
|
7
|
+
spec.email = ["ask@southbridge.io"]
|
8
|
+
|
9
|
+
spec.summary = "TDLib schema for tdlib-ruby gem"
|
10
|
+
spec.description = "TDLib schema for tdlib-ruby gem"
|
11
|
+
spec.homepage = "https://github.com/southbridgeio/tdlib-schema"
|
12
|
+
spec.license = "MIT"
|
13
|
+
spec.required_ruby_version = ">= 2.6.0"
|
14
|
+
|
15
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
16
|
+
spec.metadata["source_code_uri"] = spec.homepage
|
17
|
+
|
18
|
+
# Specify which files should be added to the gem when it is released.
|
19
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
20
|
+
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
21
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
|
22
|
+
end
|
23
|
+
spec.bindir = "exe"
|
24
|
+
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
25
|
+
spec.require_paths = ["lib"]
|
26
|
+
|
27
|
+
# Uncomment to register a new dependency of your gem
|
28
|
+
# spec.add_dependency "example-gem", "~> 1.0"
|
29
|
+
|
30
|
+
# For more information and examples about making a new gem, checkout our
|
31
|
+
# guide at: https://bundler.io/guides/creating_gem.html
|
32
|
+
|
33
|
+
spec.add_runtime_dependency 'dry-struct', '~> 1.0'
|
34
|
+
spec.add_runtime_dependency 'dry-types', '~> 1.0'
|
35
|
+
|
36
|
+
spec.add_development_dependency 'bundler', '~> 2.0'
|
37
|
+
spec.add_development_dependency 'rake', '~> 13.0'
|
38
|
+
spec.add_development_dependency 'rspec', '~> 3.0'
|
39
|
+
spec.add_development_dependency 'rubygems-tasks', '~> 0.2'
|
40
|
+
spec.add_development_dependency 'yard', '~> 0.9'
|
41
|
+
spec.add_development_dependency 'pry', '~> 0.11'
|
42
|
+
spec.add_development_dependency 'activesupport', '~> 5.2'
|
43
|
+
end
|
metadata
ADDED
@@ -0,0 +1,1149 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: tdlib-schema
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.7.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Southbridge
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2021-06-25 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: dry-struct
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: dry-types
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bundler
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '2.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '2.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rake
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '13.0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '13.0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rspec
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '3.0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '3.0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rubygems-tasks
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0.2'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0.2'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: yard
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0.9'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0.9'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: pry
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - "~>"
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0.11'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - "~>"
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0.11'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: activesupport
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - "~>"
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '5.2'
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - "~>"
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '5.2'
|
139
|
+
description: TDLib schema for tdlib-ruby gem
|
140
|
+
email:
|
141
|
+
- ask@southbridge.io
|
142
|
+
executables: []
|
143
|
+
extensions: []
|
144
|
+
extra_rdoc_files: []
|
145
|
+
files:
|
146
|
+
- ".github/workflows/main.yml"
|
147
|
+
- ".gitignore"
|
148
|
+
- ".gitmodules"
|
149
|
+
- ".rspec"
|
150
|
+
- ".ruby-gemset"
|
151
|
+
- ".ruby-version"
|
152
|
+
- CHANGELOG.md
|
153
|
+
- CODE_OF_CONDUCT.md
|
154
|
+
- Gemfile
|
155
|
+
- LICENSE.txt
|
156
|
+
- README.md
|
157
|
+
- Rakefile
|
158
|
+
- bin/console
|
159
|
+
- bin/parser
|
160
|
+
- bin/setup
|
161
|
+
- lib/tdlib-schema.rb
|
162
|
+
- lib/tdlib/client_methods.rb
|
163
|
+
- lib/tdlib/td.rb
|
164
|
+
- lib/tdlib/types.rb
|
165
|
+
- lib/tdlib/types/account_ttl.rb
|
166
|
+
- lib/tdlib/types/address.rb
|
167
|
+
- lib/tdlib/types/animated_chat_photo.rb
|
168
|
+
- lib/tdlib/types/animation.rb
|
169
|
+
- lib/tdlib/types/animations.rb
|
170
|
+
- lib/tdlib/types/audio.rb
|
171
|
+
- lib/tdlib/types/authentication_code_info.rb
|
172
|
+
- lib/tdlib/types/authentication_code_type.rb
|
173
|
+
- lib/tdlib/types/authentication_code_type/call.rb
|
174
|
+
- lib/tdlib/types/authentication_code_type/flash_call.rb
|
175
|
+
- lib/tdlib/types/authentication_code_type/sms.rb
|
176
|
+
- lib/tdlib/types/authentication_code_type/telegram_message.rb
|
177
|
+
- lib/tdlib/types/authorization_state.rb
|
178
|
+
- lib/tdlib/types/authorization_state/closed.rb
|
179
|
+
- lib/tdlib/types/authorization_state/closing.rb
|
180
|
+
- lib/tdlib/types/authorization_state/logging_out.rb
|
181
|
+
- lib/tdlib/types/authorization_state/ready.rb
|
182
|
+
- lib/tdlib/types/authorization_state/wait_code.rb
|
183
|
+
- lib/tdlib/types/authorization_state/wait_encryption_key.rb
|
184
|
+
- lib/tdlib/types/authorization_state/wait_other_device_confirmation.rb
|
185
|
+
- lib/tdlib/types/authorization_state/wait_password.rb
|
186
|
+
- lib/tdlib/types/authorization_state/wait_phone_number.rb
|
187
|
+
- lib/tdlib/types/authorization_state/wait_registration.rb
|
188
|
+
- lib/tdlib/types/authorization_state/wait_tdlib_parameters.rb
|
189
|
+
- lib/tdlib/types/auto_download_settings.rb
|
190
|
+
- lib/tdlib/types/auto_download_settings_presets.rb
|
191
|
+
- lib/tdlib/types/background.rb
|
192
|
+
- lib/tdlib/types/background_fill.rb
|
193
|
+
- lib/tdlib/types/background_fill/gradient.rb
|
194
|
+
- lib/tdlib/types/background_fill/solid.rb
|
195
|
+
- lib/tdlib/types/background_type.rb
|
196
|
+
- lib/tdlib/types/background_type/fill.rb
|
197
|
+
- lib/tdlib/types/background_type/pattern.rb
|
198
|
+
- lib/tdlib/types/background_type/wallpaper.rb
|
199
|
+
- lib/tdlib/types/backgrounds.rb
|
200
|
+
- lib/tdlib/types/bank_card_action_open_url.rb
|
201
|
+
- lib/tdlib/types/bank_card_info.rb
|
202
|
+
- lib/tdlib/types/base.rb
|
203
|
+
- lib/tdlib/types/basic_group.rb
|
204
|
+
- lib/tdlib/types/basic_group_full_info.rb
|
205
|
+
- lib/tdlib/types/bot_command.rb
|
206
|
+
- lib/tdlib/types/bot_info.rb
|
207
|
+
- lib/tdlib/types/call.rb
|
208
|
+
- lib/tdlib/types/call_discard_reason.rb
|
209
|
+
- lib/tdlib/types/call_discard_reason/declined.rb
|
210
|
+
- lib/tdlib/types/call_discard_reason/disconnected.rb
|
211
|
+
- lib/tdlib/types/call_discard_reason/empty.rb
|
212
|
+
- lib/tdlib/types/call_discard_reason/hung_up.rb
|
213
|
+
- lib/tdlib/types/call_discard_reason/missed.rb
|
214
|
+
- lib/tdlib/types/call_id.rb
|
215
|
+
- lib/tdlib/types/call_problem.rb
|
216
|
+
- lib/tdlib/types/call_problem/distorted_speech.rb
|
217
|
+
- lib/tdlib/types/call_problem/distorted_video.rb
|
218
|
+
- lib/tdlib/types/call_problem/dropped.rb
|
219
|
+
- lib/tdlib/types/call_problem/echo.rb
|
220
|
+
- lib/tdlib/types/call_problem/interruptions.rb
|
221
|
+
- lib/tdlib/types/call_problem/noise.rb
|
222
|
+
- lib/tdlib/types/call_problem/pixelated_video.rb
|
223
|
+
- lib/tdlib/types/call_problem/silent_local.rb
|
224
|
+
- lib/tdlib/types/call_problem/silent_remote.rb
|
225
|
+
- lib/tdlib/types/call_protocol.rb
|
226
|
+
- lib/tdlib/types/call_server.rb
|
227
|
+
- lib/tdlib/types/call_server_type.rb
|
228
|
+
- lib/tdlib/types/call_server_type/telegram_reflector.rb
|
229
|
+
- lib/tdlib/types/call_server_type/webrtc.rb
|
230
|
+
- lib/tdlib/types/call_state.rb
|
231
|
+
- lib/tdlib/types/call_state/discarded.rb
|
232
|
+
- lib/tdlib/types/call_state/error.rb
|
233
|
+
- lib/tdlib/types/call_state/exchanging_keys.rb
|
234
|
+
- lib/tdlib/types/call_state/hanging_up.rb
|
235
|
+
- lib/tdlib/types/call_state/pending.rb
|
236
|
+
- lib/tdlib/types/call_state/ready.rb
|
237
|
+
- lib/tdlib/types/callback_query_answer.rb
|
238
|
+
- lib/tdlib/types/callback_query_payload.rb
|
239
|
+
- lib/tdlib/types/callback_query_payload/data.rb
|
240
|
+
- lib/tdlib/types/callback_query_payload/data_with_password.rb
|
241
|
+
- lib/tdlib/types/callback_query_payload/game.rb
|
242
|
+
- lib/tdlib/types/can_transfer_ownership_result.rb
|
243
|
+
- lib/tdlib/types/can_transfer_ownership_result/ok.rb
|
244
|
+
- lib/tdlib/types/can_transfer_ownership_result/password_needed.rb
|
245
|
+
- lib/tdlib/types/can_transfer_ownership_result/password_too_fresh.rb
|
246
|
+
- lib/tdlib/types/can_transfer_ownership_result/session_too_fresh.rb
|
247
|
+
- lib/tdlib/types/chat.rb
|
248
|
+
- lib/tdlib/types/chat_action.rb
|
249
|
+
- lib/tdlib/types/chat_action/cancel.rb
|
250
|
+
- lib/tdlib/types/chat_action/choosing_contact.rb
|
251
|
+
- lib/tdlib/types/chat_action/choosing_location.rb
|
252
|
+
- lib/tdlib/types/chat_action/recording_video.rb
|
253
|
+
- lib/tdlib/types/chat_action/recording_video_note.rb
|
254
|
+
- lib/tdlib/types/chat_action/recording_voice_note.rb
|
255
|
+
- lib/tdlib/types/chat_action/start_playing_game.rb
|
256
|
+
- lib/tdlib/types/chat_action/typing.rb
|
257
|
+
- lib/tdlib/types/chat_action/uploading_document.rb
|
258
|
+
- lib/tdlib/types/chat_action/uploading_photo.rb
|
259
|
+
- lib/tdlib/types/chat_action/uploading_video.rb
|
260
|
+
- lib/tdlib/types/chat_action/uploading_video_note.rb
|
261
|
+
- lib/tdlib/types/chat_action/uploading_voice_note.rb
|
262
|
+
- lib/tdlib/types/chat_action_bar.rb
|
263
|
+
- lib/tdlib/types/chat_action_bar/add_contact.rb
|
264
|
+
- lib/tdlib/types/chat_action_bar/invite_members.rb
|
265
|
+
- lib/tdlib/types/chat_action_bar/report_add_block.rb
|
266
|
+
- lib/tdlib/types/chat_action_bar/report_spam.rb
|
267
|
+
- lib/tdlib/types/chat_action_bar/report_unrelated_location.rb
|
268
|
+
- lib/tdlib/types/chat_action_bar/share_phone_number.rb
|
269
|
+
- lib/tdlib/types/chat_administrator.rb
|
270
|
+
- lib/tdlib/types/chat_administrators.rb
|
271
|
+
- lib/tdlib/types/chat_event.rb
|
272
|
+
- lib/tdlib/types/chat_event_action.rb
|
273
|
+
- lib/tdlib/types/chat_event_action/description_changed.rb
|
274
|
+
- lib/tdlib/types/chat_event_action/invite_link_deleted.rb
|
275
|
+
- lib/tdlib/types/chat_event_action/invite_link_edited.rb
|
276
|
+
- lib/tdlib/types/chat_event_action/invite_link_revoked.rb
|
277
|
+
- lib/tdlib/types/chat_event_action/invites_toggled.rb
|
278
|
+
- lib/tdlib/types/chat_event_action/is_all_history_available_toggled.rb
|
279
|
+
- lib/tdlib/types/chat_event_action/linked_chat_changed.rb
|
280
|
+
- lib/tdlib/types/chat_event_action/location_changed.rb
|
281
|
+
- lib/tdlib/types/chat_event_action/member_invited.rb
|
282
|
+
- lib/tdlib/types/chat_event_action/member_joined.rb
|
283
|
+
- lib/tdlib/types/chat_event_action/member_joined_by_invite_link.rb
|
284
|
+
- lib/tdlib/types/chat_event_action/member_left.rb
|
285
|
+
- lib/tdlib/types/chat_event_action/member_promoted.rb
|
286
|
+
- lib/tdlib/types/chat_event_action/member_restricted.rb
|
287
|
+
- lib/tdlib/types/chat_event_action/message_deleted.rb
|
288
|
+
- lib/tdlib/types/chat_event_action/message_edited.rb
|
289
|
+
- lib/tdlib/types/chat_event_action/message_pinned.rb
|
290
|
+
- lib/tdlib/types/chat_event_action/message_ttl_setting_changed.rb
|
291
|
+
- lib/tdlib/types/chat_event_action/message_unpinned.rb
|
292
|
+
- lib/tdlib/types/chat_event_action/permissions_changed.rb
|
293
|
+
- lib/tdlib/types/chat_event_action/photo_changed.rb
|
294
|
+
- lib/tdlib/types/chat_event_action/poll_stopped.rb
|
295
|
+
- lib/tdlib/types/chat_event_action/sign_messages_toggled.rb
|
296
|
+
- lib/tdlib/types/chat_event_action/slow_mode_delay_changed.rb
|
297
|
+
- lib/tdlib/types/chat_event_action/sticker_set_changed.rb
|
298
|
+
- lib/tdlib/types/chat_event_action/title_changed.rb
|
299
|
+
- lib/tdlib/types/chat_event_action/username_changed.rb
|
300
|
+
- lib/tdlib/types/chat_event_action/voice_chat_created.rb
|
301
|
+
- lib/tdlib/types/chat_event_action/voice_chat_discarded.rb
|
302
|
+
- lib/tdlib/types/chat_event_action/voice_chat_mute_new_participants_toggled.rb
|
303
|
+
- lib/tdlib/types/chat_event_action/voice_chat_participant_is_muted_toggled.rb
|
304
|
+
- lib/tdlib/types/chat_event_action/voice_chat_participant_volume_level_changed.rb
|
305
|
+
- lib/tdlib/types/chat_event_log_filters.rb
|
306
|
+
- lib/tdlib/types/chat_events.rb
|
307
|
+
- lib/tdlib/types/chat_filter.rb
|
308
|
+
- lib/tdlib/types/chat_filter_info.rb
|
309
|
+
- lib/tdlib/types/chat_invite_link.rb
|
310
|
+
- lib/tdlib/types/chat_invite_link_count.rb
|
311
|
+
- lib/tdlib/types/chat_invite_link_counts.rb
|
312
|
+
- lib/tdlib/types/chat_invite_link_info.rb
|
313
|
+
- lib/tdlib/types/chat_invite_link_member.rb
|
314
|
+
- lib/tdlib/types/chat_invite_link_members.rb
|
315
|
+
- lib/tdlib/types/chat_invite_links.rb
|
316
|
+
- lib/tdlib/types/chat_list.rb
|
317
|
+
- lib/tdlib/types/chat_list/archive.rb
|
318
|
+
- lib/tdlib/types/chat_list/filter.rb
|
319
|
+
- lib/tdlib/types/chat_list/main.rb
|
320
|
+
- lib/tdlib/types/chat_lists.rb
|
321
|
+
- lib/tdlib/types/chat_location.rb
|
322
|
+
- lib/tdlib/types/chat_member.rb
|
323
|
+
- lib/tdlib/types/chat_member_status.rb
|
324
|
+
- lib/tdlib/types/chat_member_status/administrator.rb
|
325
|
+
- lib/tdlib/types/chat_member_status/banned.rb
|
326
|
+
- lib/tdlib/types/chat_member_status/creator.rb
|
327
|
+
- lib/tdlib/types/chat_member_status/left.rb
|
328
|
+
- lib/tdlib/types/chat_member_status/member.rb
|
329
|
+
- lib/tdlib/types/chat_member_status/restricted.rb
|
330
|
+
- lib/tdlib/types/chat_members.rb
|
331
|
+
- lib/tdlib/types/chat_members_filter.rb
|
332
|
+
- lib/tdlib/types/chat_members_filter/administrators.rb
|
333
|
+
- lib/tdlib/types/chat_members_filter/banned.rb
|
334
|
+
- lib/tdlib/types/chat_members_filter/bots.rb
|
335
|
+
- lib/tdlib/types/chat_members_filter/contacts.rb
|
336
|
+
- lib/tdlib/types/chat_members_filter/members.rb
|
337
|
+
- lib/tdlib/types/chat_members_filter/mention.rb
|
338
|
+
- lib/tdlib/types/chat_members_filter/restricted.rb
|
339
|
+
- lib/tdlib/types/chat_nearby.rb
|
340
|
+
- lib/tdlib/types/chat_notification_settings.rb
|
341
|
+
- lib/tdlib/types/chat_permissions.rb
|
342
|
+
- lib/tdlib/types/chat_photo.rb
|
343
|
+
- lib/tdlib/types/chat_photo_info.rb
|
344
|
+
- lib/tdlib/types/chat_photos.rb
|
345
|
+
- lib/tdlib/types/chat_position.rb
|
346
|
+
- lib/tdlib/types/chat_report_reason.rb
|
347
|
+
- lib/tdlib/types/chat_report_reason/child_abuse.rb
|
348
|
+
- lib/tdlib/types/chat_report_reason/copyright.rb
|
349
|
+
- lib/tdlib/types/chat_report_reason/custom.rb
|
350
|
+
- lib/tdlib/types/chat_report_reason/fake.rb
|
351
|
+
- lib/tdlib/types/chat_report_reason/pornography.rb
|
352
|
+
- lib/tdlib/types/chat_report_reason/spam.rb
|
353
|
+
- lib/tdlib/types/chat_report_reason/unrelated_location.rb
|
354
|
+
- lib/tdlib/types/chat_report_reason/violence.rb
|
355
|
+
- lib/tdlib/types/chat_source.rb
|
356
|
+
- lib/tdlib/types/chat_source/mtproto_proxy.rb
|
357
|
+
- lib/tdlib/types/chat_source/public_service_announcement.rb
|
358
|
+
- lib/tdlib/types/chat_statistics.rb
|
359
|
+
- lib/tdlib/types/chat_statistics/channel.rb
|
360
|
+
- lib/tdlib/types/chat_statistics/supergroup.rb
|
361
|
+
- lib/tdlib/types/chat_statistics_administrator_actions_info.rb
|
362
|
+
- lib/tdlib/types/chat_statistics_inviter_info.rb
|
363
|
+
- lib/tdlib/types/chat_statistics_message_interaction_info.rb
|
364
|
+
- lib/tdlib/types/chat_statistics_message_sender_info.rb
|
365
|
+
- lib/tdlib/types/chat_type.rb
|
366
|
+
- lib/tdlib/types/chat_type/basic_group.rb
|
367
|
+
- lib/tdlib/types/chat_type/private.rb
|
368
|
+
- lib/tdlib/types/chat_type/secret.rb
|
369
|
+
- lib/tdlib/types/chat_type/supergroup.rb
|
370
|
+
- lib/tdlib/types/chats.rb
|
371
|
+
- lib/tdlib/types/chats_nearby.rb
|
372
|
+
- lib/tdlib/types/check_chat_username_result.rb
|
373
|
+
- lib/tdlib/types/check_chat_username_result/ok.rb
|
374
|
+
- lib/tdlib/types/check_chat_username_result/public_chats_too_much.rb
|
375
|
+
- lib/tdlib/types/check_chat_username_result/public_groups_unavailable.rb
|
376
|
+
- lib/tdlib/types/check_chat_username_result/username_invalid.rb
|
377
|
+
- lib/tdlib/types/check_chat_username_result/username_occupied.rb
|
378
|
+
- lib/tdlib/types/closed_vector_path.rb
|
379
|
+
- lib/tdlib/types/connected_website.rb
|
380
|
+
- lib/tdlib/types/connected_websites.rb
|
381
|
+
- lib/tdlib/types/connection_state.rb
|
382
|
+
- lib/tdlib/types/connection_state/connecting.rb
|
383
|
+
- lib/tdlib/types/connection_state/connecting_to_proxy.rb
|
384
|
+
- lib/tdlib/types/connection_state/ready.rb
|
385
|
+
- lib/tdlib/types/connection_state/updating.rb
|
386
|
+
- lib/tdlib/types/connection_state/waiting_for_network.rb
|
387
|
+
- lib/tdlib/types/contact.rb
|
388
|
+
- lib/tdlib/types/count.rb
|
389
|
+
- lib/tdlib/types/countries.rb
|
390
|
+
- lib/tdlib/types/country_info.rb
|
391
|
+
- lib/tdlib/types/custom_request_result.rb
|
392
|
+
- lib/tdlib/types/database_statistics.rb
|
393
|
+
- lib/tdlib/types/date.rb
|
394
|
+
- lib/tdlib/types/date_range.rb
|
395
|
+
- lib/tdlib/types/dated_file.rb
|
396
|
+
- lib/tdlib/types/deep_link_info.rb
|
397
|
+
- lib/tdlib/types/device_token.rb
|
398
|
+
- lib/tdlib/types/device_token/apple_push.rb
|
399
|
+
- lib/tdlib/types/device_token/apple_push_vo_ip.rb
|
400
|
+
- lib/tdlib/types/device_token/black_berry_push.rb
|
401
|
+
- lib/tdlib/types/device_token/firebase_cloud_messaging.rb
|
402
|
+
- lib/tdlib/types/device_token/microsoft_push.rb
|
403
|
+
- lib/tdlib/types/device_token/microsoft_push_vo_ip.rb
|
404
|
+
- lib/tdlib/types/device_token/simple_push.rb
|
405
|
+
- lib/tdlib/types/device_token/tizen_push.rb
|
406
|
+
- lib/tdlib/types/device_token/ubuntu_push.rb
|
407
|
+
- lib/tdlib/types/device_token/web_push.rb
|
408
|
+
- lib/tdlib/types/device_token/windows_push.rb
|
409
|
+
- lib/tdlib/types/dice_stickers.rb
|
410
|
+
- lib/tdlib/types/dice_stickers/regular.rb
|
411
|
+
- lib/tdlib/types/dice_stickers/slot_machine.rb
|
412
|
+
- lib/tdlib/types/document.rb
|
413
|
+
- lib/tdlib/types/draft_message.rb
|
414
|
+
- lib/tdlib/types/email_address_authentication_code_info.rb
|
415
|
+
- lib/tdlib/types/emojis.rb
|
416
|
+
- lib/tdlib/types/encrypted_credentials.rb
|
417
|
+
- lib/tdlib/types/encrypted_passport_element.rb
|
418
|
+
- lib/tdlib/types/error.rb
|
419
|
+
- lib/tdlib/types/file.rb
|
420
|
+
- lib/tdlib/types/file_part.rb
|
421
|
+
- lib/tdlib/types/file_type.rb
|
422
|
+
- lib/tdlib/types/file_type/animation.rb
|
423
|
+
- lib/tdlib/types/file_type/audio.rb
|
424
|
+
- lib/tdlib/types/file_type/document.rb
|
425
|
+
- lib/tdlib/types/file_type/none.rb
|
426
|
+
- lib/tdlib/types/file_type/photo.rb
|
427
|
+
- lib/tdlib/types/file_type/profile_photo.rb
|
428
|
+
- lib/tdlib/types/file_type/secret.rb
|
429
|
+
- lib/tdlib/types/file_type/secret_thumbnail.rb
|
430
|
+
- lib/tdlib/types/file_type/secure.rb
|
431
|
+
- lib/tdlib/types/file_type/sticker.rb
|
432
|
+
- lib/tdlib/types/file_type/thumbnail.rb
|
433
|
+
- lib/tdlib/types/file_type/unknown.rb
|
434
|
+
- lib/tdlib/types/file_type/video.rb
|
435
|
+
- lib/tdlib/types/file_type/video_note.rb
|
436
|
+
- lib/tdlib/types/file_type/voice_note.rb
|
437
|
+
- lib/tdlib/types/file_type/wallpaper.rb
|
438
|
+
- lib/tdlib/types/formatted_text.rb
|
439
|
+
- lib/tdlib/types/found_messages.rb
|
440
|
+
- lib/tdlib/types/game.rb
|
441
|
+
- lib/tdlib/types/game_high_score.rb
|
442
|
+
- lib/tdlib/types/game_high_scores.rb
|
443
|
+
- lib/tdlib/types/group_call.rb
|
444
|
+
- lib/tdlib/types/group_call_id.rb
|
445
|
+
- lib/tdlib/types/group_call_join_response.rb
|
446
|
+
- lib/tdlib/types/group_call_join_response/stream.rb
|
447
|
+
- lib/tdlib/types/group_call_join_response/webrtc.rb
|
448
|
+
- lib/tdlib/types/group_call_join_response_candidate.rb
|
449
|
+
- lib/tdlib/types/group_call_participant.rb
|
450
|
+
- lib/tdlib/types/group_call_payload.rb
|
451
|
+
- lib/tdlib/types/group_call_payload_fingerprint.rb
|
452
|
+
- lib/tdlib/types/group_call_recent_speaker.rb
|
453
|
+
- lib/tdlib/types/hashtags.rb
|
454
|
+
- lib/tdlib/types/http_url.rb
|
455
|
+
- lib/tdlib/types/identity_document.rb
|
456
|
+
- lib/tdlib/types/imported_contacts.rb
|
457
|
+
- lib/tdlib/types/inline_keyboard_button.rb
|
458
|
+
- lib/tdlib/types/inline_keyboard_button_type.rb
|
459
|
+
- lib/tdlib/types/inline_keyboard_button_type/buy.rb
|
460
|
+
- lib/tdlib/types/inline_keyboard_button_type/callback.rb
|
461
|
+
- lib/tdlib/types/inline_keyboard_button_type/callback_game.rb
|
462
|
+
- lib/tdlib/types/inline_keyboard_button_type/callback_with_password.rb
|
463
|
+
- lib/tdlib/types/inline_keyboard_button_type/login_url.rb
|
464
|
+
- lib/tdlib/types/inline_keyboard_button_type/switch_inline.rb
|
465
|
+
- lib/tdlib/types/inline_keyboard_button_type/url.rb
|
466
|
+
- lib/tdlib/types/inline_query_result.rb
|
467
|
+
- lib/tdlib/types/inline_query_result/animation.rb
|
468
|
+
- lib/tdlib/types/inline_query_result/article.rb
|
469
|
+
- lib/tdlib/types/inline_query_result/audio.rb
|
470
|
+
- lib/tdlib/types/inline_query_result/contact.rb
|
471
|
+
- lib/tdlib/types/inline_query_result/document.rb
|
472
|
+
- lib/tdlib/types/inline_query_result/game.rb
|
473
|
+
- lib/tdlib/types/inline_query_result/location.rb
|
474
|
+
- lib/tdlib/types/inline_query_result/photo.rb
|
475
|
+
- lib/tdlib/types/inline_query_result/sticker.rb
|
476
|
+
- lib/tdlib/types/inline_query_result/venue.rb
|
477
|
+
- lib/tdlib/types/inline_query_result/video.rb
|
478
|
+
- lib/tdlib/types/inline_query_result/voice_note.rb
|
479
|
+
- lib/tdlib/types/inline_query_results.rb
|
480
|
+
- lib/tdlib/types/input_background.rb
|
481
|
+
- lib/tdlib/types/input_background/local.rb
|
482
|
+
- lib/tdlib/types/input_background/remote.rb
|
483
|
+
- lib/tdlib/types/input_chat_photo.rb
|
484
|
+
- lib/tdlib/types/input_chat_photo/animation.rb
|
485
|
+
- lib/tdlib/types/input_chat_photo/previous.rb
|
486
|
+
- lib/tdlib/types/input_chat_photo/static.rb
|
487
|
+
- lib/tdlib/types/input_credentials.rb
|
488
|
+
- lib/tdlib/types/input_credentials/apple_pay.rb
|
489
|
+
- lib/tdlib/types/input_credentials/google_pay.rb
|
490
|
+
- lib/tdlib/types/input_credentials/new.rb
|
491
|
+
- lib/tdlib/types/input_credentials/saved.rb
|
492
|
+
- lib/tdlib/types/input_file.rb
|
493
|
+
- lib/tdlib/types/input_file/generated.rb
|
494
|
+
- lib/tdlib/types/input_file/id.rb
|
495
|
+
- lib/tdlib/types/input_file/local.rb
|
496
|
+
- lib/tdlib/types/input_file/remote.rb
|
497
|
+
- lib/tdlib/types/input_identity_document.rb
|
498
|
+
- lib/tdlib/types/input_inline_query_result.rb
|
499
|
+
- lib/tdlib/types/input_inline_query_result/animation.rb
|
500
|
+
- lib/tdlib/types/input_inline_query_result/article.rb
|
501
|
+
- lib/tdlib/types/input_inline_query_result/audio.rb
|
502
|
+
- lib/tdlib/types/input_inline_query_result/contact.rb
|
503
|
+
- lib/tdlib/types/input_inline_query_result/document.rb
|
504
|
+
- lib/tdlib/types/input_inline_query_result/game.rb
|
505
|
+
- lib/tdlib/types/input_inline_query_result/location.rb
|
506
|
+
- lib/tdlib/types/input_inline_query_result/photo.rb
|
507
|
+
- lib/tdlib/types/input_inline_query_result/sticker.rb
|
508
|
+
- lib/tdlib/types/input_inline_query_result/venue.rb
|
509
|
+
- lib/tdlib/types/input_inline_query_result/video.rb
|
510
|
+
- lib/tdlib/types/input_inline_query_result/voice_note.rb
|
511
|
+
- lib/tdlib/types/input_message_content.rb
|
512
|
+
- lib/tdlib/types/input_message_content/animation.rb
|
513
|
+
- lib/tdlib/types/input_message_content/audio.rb
|
514
|
+
- lib/tdlib/types/input_message_content/contact.rb
|
515
|
+
- lib/tdlib/types/input_message_content/dice.rb
|
516
|
+
- lib/tdlib/types/input_message_content/document.rb
|
517
|
+
- lib/tdlib/types/input_message_content/forwarded.rb
|
518
|
+
- lib/tdlib/types/input_message_content/game.rb
|
519
|
+
- lib/tdlib/types/input_message_content/invoice.rb
|
520
|
+
- lib/tdlib/types/input_message_content/location.rb
|
521
|
+
- lib/tdlib/types/input_message_content/photo.rb
|
522
|
+
- lib/tdlib/types/input_message_content/poll.rb
|
523
|
+
- lib/tdlib/types/input_message_content/sticker.rb
|
524
|
+
- lib/tdlib/types/input_message_content/text.rb
|
525
|
+
- lib/tdlib/types/input_message_content/venue.rb
|
526
|
+
- lib/tdlib/types/input_message_content/video.rb
|
527
|
+
- lib/tdlib/types/input_message_content/video_note.rb
|
528
|
+
- lib/tdlib/types/input_message_content/voice_note.rb
|
529
|
+
- lib/tdlib/types/input_passport_element.rb
|
530
|
+
- lib/tdlib/types/input_passport_element/address.rb
|
531
|
+
- lib/tdlib/types/input_passport_element/bank_statement.rb
|
532
|
+
- lib/tdlib/types/input_passport_element/driver_license.rb
|
533
|
+
- lib/tdlib/types/input_passport_element/email_address.rb
|
534
|
+
- lib/tdlib/types/input_passport_element/identity_card.rb
|
535
|
+
- lib/tdlib/types/input_passport_element/internal_passport.rb
|
536
|
+
- lib/tdlib/types/input_passport_element/passport.rb
|
537
|
+
- lib/tdlib/types/input_passport_element/passport_registration.rb
|
538
|
+
- lib/tdlib/types/input_passport_element/personal_details.rb
|
539
|
+
- lib/tdlib/types/input_passport_element/phone_number.rb
|
540
|
+
- lib/tdlib/types/input_passport_element/rental_agreement.rb
|
541
|
+
- lib/tdlib/types/input_passport_element/temporary_registration.rb
|
542
|
+
- lib/tdlib/types/input_passport_element/utility_bill.rb
|
543
|
+
- lib/tdlib/types/input_passport_element_error.rb
|
544
|
+
- lib/tdlib/types/input_passport_element_error_source.rb
|
545
|
+
- lib/tdlib/types/input_passport_element_error_source/data_field.rb
|
546
|
+
- lib/tdlib/types/input_passport_element_error_source/file.rb
|
547
|
+
- lib/tdlib/types/input_passport_element_error_source/files.rb
|
548
|
+
- lib/tdlib/types/input_passport_element_error_source/front_side.rb
|
549
|
+
- lib/tdlib/types/input_passport_element_error_source/reverse_side.rb
|
550
|
+
- lib/tdlib/types/input_passport_element_error_source/selfie.rb
|
551
|
+
- lib/tdlib/types/input_passport_element_error_source/translation_file.rb
|
552
|
+
- lib/tdlib/types/input_passport_element_error_source/translation_files.rb
|
553
|
+
- lib/tdlib/types/input_passport_element_error_source/unspecified.rb
|
554
|
+
- lib/tdlib/types/input_personal_document.rb
|
555
|
+
- lib/tdlib/types/input_sticker.rb
|
556
|
+
- lib/tdlib/types/input_sticker/animated.rb
|
557
|
+
- lib/tdlib/types/input_sticker/static.rb
|
558
|
+
- lib/tdlib/types/input_thumbnail.rb
|
559
|
+
- lib/tdlib/types/invoice.rb
|
560
|
+
- lib/tdlib/types/json_object_member.rb
|
561
|
+
- lib/tdlib/types/json_value.rb
|
562
|
+
- lib/tdlib/types/json_value/array.rb
|
563
|
+
- lib/tdlib/types/json_value/boolean.rb
|
564
|
+
- lib/tdlib/types/json_value/null.rb
|
565
|
+
- lib/tdlib/types/json_value/number.rb
|
566
|
+
- lib/tdlib/types/json_value/object.rb
|
567
|
+
- lib/tdlib/types/json_value/string.rb
|
568
|
+
- lib/tdlib/types/keyboard_button.rb
|
569
|
+
- lib/tdlib/types/keyboard_button_type.rb
|
570
|
+
- lib/tdlib/types/keyboard_button_type/request_location.rb
|
571
|
+
- lib/tdlib/types/keyboard_button_type/request_phone_number.rb
|
572
|
+
- lib/tdlib/types/keyboard_button_type/request_poll.rb
|
573
|
+
- lib/tdlib/types/keyboard_button_type/text.rb
|
574
|
+
- lib/tdlib/types/labeled_price_part.rb
|
575
|
+
- lib/tdlib/types/language_pack_info.rb
|
576
|
+
- lib/tdlib/types/language_pack_string.rb
|
577
|
+
- lib/tdlib/types/language_pack_string_value.rb
|
578
|
+
- lib/tdlib/types/language_pack_string_value/deleted.rb
|
579
|
+
- lib/tdlib/types/language_pack_string_value/ordinary.rb
|
580
|
+
- lib/tdlib/types/language_pack_string_value/pluralized.rb
|
581
|
+
- lib/tdlib/types/language_pack_strings.rb
|
582
|
+
- lib/tdlib/types/local_file.rb
|
583
|
+
- lib/tdlib/types/localization_target_info.rb
|
584
|
+
- lib/tdlib/types/location.rb
|
585
|
+
- lib/tdlib/types/log_stream.rb
|
586
|
+
- lib/tdlib/types/log_stream/default.rb
|
587
|
+
- lib/tdlib/types/log_stream/empty.rb
|
588
|
+
- lib/tdlib/types/log_stream/file.rb
|
589
|
+
- lib/tdlib/types/log_tags.rb
|
590
|
+
- lib/tdlib/types/log_verbosity_level.rb
|
591
|
+
- lib/tdlib/types/login_url_info.rb
|
592
|
+
- lib/tdlib/types/login_url_info/open.rb
|
593
|
+
- lib/tdlib/types/login_url_info/request_confirmation.rb
|
594
|
+
- lib/tdlib/types/mask_point.rb
|
595
|
+
- lib/tdlib/types/mask_point/chin.rb
|
596
|
+
- lib/tdlib/types/mask_point/eyes.rb
|
597
|
+
- lib/tdlib/types/mask_point/forehead.rb
|
598
|
+
- lib/tdlib/types/mask_point/mouth.rb
|
599
|
+
- lib/tdlib/types/mask_position.rb
|
600
|
+
- lib/tdlib/types/message.rb
|
601
|
+
- lib/tdlib/types/message_content.rb
|
602
|
+
- lib/tdlib/types/message_content/animation.rb
|
603
|
+
- lib/tdlib/types/message_content/audio.rb
|
604
|
+
- lib/tdlib/types/message_content/basic_group_chat_create.rb
|
605
|
+
- lib/tdlib/types/message_content/call.rb
|
606
|
+
- lib/tdlib/types/message_content/chat_add_members.rb
|
607
|
+
- lib/tdlib/types/message_content/chat_change_photo.rb
|
608
|
+
- lib/tdlib/types/message_content/chat_change_title.rb
|
609
|
+
- lib/tdlib/types/message_content/chat_delete_member.rb
|
610
|
+
- lib/tdlib/types/message_content/chat_delete_photo.rb
|
611
|
+
- lib/tdlib/types/message_content/chat_join_by_link.rb
|
612
|
+
- lib/tdlib/types/message_content/chat_set_ttl.rb
|
613
|
+
- lib/tdlib/types/message_content/chat_upgrade_from.rb
|
614
|
+
- lib/tdlib/types/message_content/chat_upgrade_to.rb
|
615
|
+
- lib/tdlib/types/message_content/contact.rb
|
616
|
+
- lib/tdlib/types/message_content/contact_registered.rb
|
617
|
+
- lib/tdlib/types/message_content/custom_service_action.rb
|
618
|
+
- lib/tdlib/types/message_content/dice.rb
|
619
|
+
- lib/tdlib/types/message_content/document.rb
|
620
|
+
- lib/tdlib/types/message_content/expired_photo.rb
|
621
|
+
- lib/tdlib/types/message_content/expired_video.rb
|
622
|
+
- lib/tdlib/types/message_content/game.rb
|
623
|
+
- lib/tdlib/types/message_content/game_score.rb
|
624
|
+
- lib/tdlib/types/message_content/invite_voice_chat_participants.rb
|
625
|
+
- lib/tdlib/types/message_content/invoice.rb
|
626
|
+
- lib/tdlib/types/message_content/location.rb
|
627
|
+
- lib/tdlib/types/message_content/passport_data_received.rb
|
628
|
+
- lib/tdlib/types/message_content/passport_data_sent.rb
|
629
|
+
- lib/tdlib/types/message_content/payment_successful.rb
|
630
|
+
- lib/tdlib/types/message_content/payment_successful_bot.rb
|
631
|
+
- lib/tdlib/types/message_content/photo.rb
|
632
|
+
- lib/tdlib/types/message_content/pin_message.rb
|
633
|
+
- lib/tdlib/types/message_content/poll.rb
|
634
|
+
- lib/tdlib/types/message_content/proximity_alert_triggered.rb
|
635
|
+
- lib/tdlib/types/message_content/screenshot_taken.rb
|
636
|
+
- lib/tdlib/types/message_content/sticker.rb
|
637
|
+
- lib/tdlib/types/message_content/supergroup_chat_create.rb
|
638
|
+
- lib/tdlib/types/message_content/text.rb
|
639
|
+
- lib/tdlib/types/message_content/unsupported.rb
|
640
|
+
- lib/tdlib/types/message_content/venue.rb
|
641
|
+
- lib/tdlib/types/message_content/video.rb
|
642
|
+
- lib/tdlib/types/message_content/video_note.rb
|
643
|
+
- lib/tdlib/types/message_content/voice_chat_ended.rb
|
644
|
+
- lib/tdlib/types/message_content/voice_chat_scheduled.rb
|
645
|
+
- lib/tdlib/types/message_content/voice_chat_started.rb
|
646
|
+
- lib/tdlib/types/message_content/voice_note.rb
|
647
|
+
- lib/tdlib/types/message_content/website_connected.rb
|
648
|
+
- lib/tdlib/types/message_copy_options.rb
|
649
|
+
- lib/tdlib/types/message_file_type.rb
|
650
|
+
- lib/tdlib/types/message_file_type/group.rb
|
651
|
+
- lib/tdlib/types/message_file_type/private.rb
|
652
|
+
- lib/tdlib/types/message_file_type/unknown.rb
|
653
|
+
- lib/tdlib/types/message_forward_info.rb
|
654
|
+
- lib/tdlib/types/message_forward_origin.rb
|
655
|
+
- lib/tdlib/types/message_forward_origin/channel.rb
|
656
|
+
- lib/tdlib/types/message_forward_origin/chat.rb
|
657
|
+
- lib/tdlib/types/message_forward_origin/hidden_user.rb
|
658
|
+
- lib/tdlib/types/message_forward_origin/message_import.rb
|
659
|
+
- lib/tdlib/types/message_forward_origin/user.rb
|
660
|
+
- lib/tdlib/types/message_interaction_info.rb
|
661
|
+
- lib/tdlib/types/message_link.rb
|
662
|
+
- lib/tdlib/types/message_link_info.rb
|
663
|
+
- lib/tdlib/types/message_reply_info.rb
|
664
|
+
- lib/tdlib/types/message_scheduling_state.rb
|
665
|
+
- lib/tdlib/types/message_scheduling_state/send_at_date.rb
|
666
|
+
- lib/tdlib/types/message_scheduling_state/send_when_online.rb
|
667
|
+
- lib/tdlib/types/message_send_options.rb
|
668
|
+
- lib/tdlib/types/message_sender.rb
|
669
|
+
- lib/tdlib/types/message_sender/chat.rb
|
670
|
+
- lib/tdlib/types/message_sender/user.rb
|
671
|
+
- lib/tdlib/types/message_senders.rb
|
672
|
+
- lib/tdlib/types/message_sending_state.rb
|
673
|
+
- lib/tdlib/types/message_sending_state/failed.rb
|
674
|
+
- lib/tdlib/types/message_sending_state/pending.rb
|
675
|
+
- lib/tdlib/types/message_statistics.rb
|
676
|
+
- lib/tdlib/types/message_thread_info.rb
|
677
|
+
- lib/tdlib/types/messages.rb
|
678
|
+
- lib/tdlib/types/minithumbnail.rb
|
679
|
+
- lib/tdlib/types/network_statistics.rb
|
680
|
+
- lib/tdlib/types/network_statistics_entry.rb
|
681
|
+
- lib/tdlib/types/network_statistics_entry/call.rb
|
682
|
+
- lib/tdlib/types/network_statistics_entry/file.rb
|
683
|
+
- lib/tdlib/types/network_type.rb
|
684
|
+
- lib/tdlib/types/network_type/mobile.rb
|
685
|
+
- lib/tdlib/types/network_type/mobile_roaming.rb
|
686
|
+
- lib/tdlib/types/network_type/none.rb
|
687
|
+
- lib/tdlib/types/network_type/other.rb
|
688
|
+
- lib/tdlib/types/network_type/wi_fi.rb
|
689
|
+
- lib/tdlib/types/notification.rb
|
690
|
+
- lib/tdlib/types/notification_group.rb
|
691
|
+
- lib/tdlib/types/notification_group_type.rb
|
692
|
+
- lib/tdlib/types/notification_group_type/calls.rb
|
693
|
+
- lib/tdlib/types/notification_group_type/mentions.rb
|
694
|
+
- lib/tdlib/types/notification_group_type/messages.rb
|
695
|
+
- lib/tdlib/types/notification_group_type/secret_chat.rb
|
696
|
+
- lib/tdlib/types/notification_settings_scope.rb
|
697
|
+
- lib/tdlib/types/notification_settings_scope/channel_chats.rb
|
698
|
+
- lib/tdlib/types/notification_settings_scope/group_chats.rb
|
699
|
+
- lib/tdlib/types/notification_settings_scope/private_chats.rb
|
700
|
+
- lib/tdlib/types/notification_type.rb
|
701
|
+
- lib/tdlib/types/notification_type/new_call.rb
|
702
|
+
- lib/tdlib/types/notification_type/new_message.rb
|
703
|
+
- lib/tdlib/types/notification_type/new_push_message.rb
|
704
|
+
- lib/tdlib/types/notification_type/new_secret_chat.rb
|
705
|
+
- lib/tdlib/types/ok.rb
|
706
|
+
- lib/tdlib/types/option_value.rb
|
707
|
+
- lib/tdlib/types/option_value/boolean.rb
|
708
|
+
- lib/tdlib/types/option_value/empty.rb
|
709
|
+
- lib/tdlib/types/option_value/integer.rb
|
710
|
+
- lib/tdlib/types/option_value/string.rb
|
711
|
+
- lib/tdlib/types/order_info.rb
|
712
|
+
- lib/tdlib/types/page_block.rb
|
713
|
+
- lib/tdlib/types/page_block/anchor.rb
|
714
|
+
- lib/tdlib/types/page_block/animation.rb
|
715
|
+
- lib/tdlib/types/page_block/audio.rb
|
716
|
+
- lib/tdlib/types/page_block/author_date.rb
|
717
|
+
- lib/tdlib/types/page_block/block_quote.rb
|
718
|
+
- lib/tdlib/types/page_block/chat_link.rb
|
719
|
+
- lib/tdlib/types/page_block/collage.rb
|
720
|
+
- lib/tdlib/types/page_block/cover.rb
|
721
|
+
- lib/tdlib/types/page_block/details.rb
|
722
|
+
- lib/tdlib/types/page_block/divider.rb
|
723
|
+
- lib/tdlib/types/page_block/embedded.rb
|
724
|
+
- lib/tdlib/types/page_block/embedded_post.rb
|
725
|
+
- lib/tdlib/types/page_block/footer.rb
|
726
|
+
- lib/tdlib/types/page_block/header.rb
|
727
|
+
- lib/tdlib/types/page_block/kicker.rb
|
728
|
+
- lib/tdlib/types/page_block/list.rb
|
729
|
+
- lib/tdlib/types/page_block/map.rb
|
730
|
+
- lib/tdlib/types/page_block/paragraph.rb
|
731
|
+
- lib/tdlib/types/page_block/photo.rb
|
732
|
+
- lib/tdlib/types/page_block/preformatted.rb
|
733
|
+
- lib/tdlib/types/page_block/pull_quote.rb
|
734
|
+
- lib/tdlib/types/page_block/related_articles.rb
|
735
|
+
- lib/tdlib/types/page_block/slideshow.rb
|
736
|
+
- lib/tdlib/types/page_block/subheader.rb
|
737
|
+
- lib/tdlib/types/page_block/subtitle.rb
|
738
|
+
- lib/tdlib/types/page_block/table.rb
|
739
|
+
- lib/tdlib/types/page_block/title.rb
|
740
|
+
- lib/tdlib/types/page_block/video.rb
|
741
|
+
- lib/tdlib/types/page_block/voice_note.rb
|
742
|
+
- lib/tdlib/types/page_block_caption.rb
|
743
|
+
- lib/tdlib/types/page_block_horizontal_alignment.rb
|
744
|
+
- lib/tdlib/types/page_block_horizontal_alignment/center.rb
|
745
|
+
- lib/tdlib/types/page_block_horizontal_alignment/left.rb
|
746
|
+
- lib/tdlib/types/page_block_horizontal_alignment/right.rb
|
747
|
+
- lib/tdlib/types/page_block_list_item.rb
|
748
|
+
- lib/tdlib/types/page_block_related_article.rb
|
749
|
+
- lib/tdlib/types/page_block_table_cell.rb
|
750
|
+
- lib/tdlib/types/page_block_vertical_alignment.rb
|
751
|
+
- lib/tdlib/types/page_block_vertical_alignment/bottom.rb
|
752
|
+
- lib/tdlib/types/page_block_vertical_alignment/middle.rb
|
753
|
+
- lib/tdlib/types/page_block_vertical_alignment/top.rb
|
754
|
+
- lib/tdlib/types/passport_authorization_form.rb
|
755
|
+
- lib/tdlib/types/passport_element.rb
|
756
|
+
- lib/tdlib/types/passport_element/address.rb
|
757
|
+
- lib/tdlib/types/passport_element/bank_statement.rb
|
758
|
+
- lib/tdlib/types/passport_element/driver_license.rb
|
759
|
+
- lib/tdlib/types/passport_element/email_address.rb
|
760
|
+
- lib/tdlib/types/passport_element/identity_card.rb
|
761
|
+
- lib/tdlib/types/passport_element/internal_passport.rb
|
762
|
+
- lib/tdlib/types/passport_element/passport.rb
|
763
|
+
- lib/tdlib/types/passport_element/passport_registration.rb
|
764
|
+
- lib/tdlib/types/passport_element/personal_details.rb
|
765
|
+
- lib/tdlib/types/passport_element/phone_number.rb
|
766
|
+
- lib/tdlib/types/passport_element/rental_agreement.rb
|
767
|
+
- lib/tdlib/types/passport_element/temporary_registration.rb
|
768
|
+
- lib/tdlib/types/passport_element/utility_bill.rb
|
769
|
+
- lib/tdlib/types/passport_element_error.rb
|
770
|
+
- lib/tdlib/types/passport_element_error_source.rb
|
771
|
+
- lib/tdlib/types/passport_element_error_source/data_field.rb
|
772
|
+
- lib/tdlib/types/passport_element_error_source/file.rb
|
773
|
+
- lib/tdlib/types/passport_element_error_source/files.rb
|
774
|
+
- lib/tdlib/types/passport_element_error_source/front_side.rb
|
775
|
+
- lib/tdlib/types/passport_element_error_source/reverse_side.rb
|
776
|
+
- lib/tdlib/types/passport_element_error_source/selfie.rb
|
777
|
+
- lib/tdlib/types/passport_element_error_source/translation_file.rb
|
778
|
+
- lib/tdlib/types/passport_element_error_source/translation_files.rb
|
779
|
+
- lib/tdlib/types/passport_element_error_source/unspecified.rb
|
780
|
+
- lib/tdlib/types/passport_element_type.rb
|
781
|
+
- lib/tdlib/types/passport_element_type/address.rb
|
782
|
+
- lib/tdlib/types/passport_element_type/bank_statement.rb
|
783
|
+
- lib/tdlib/types/passport_element_type/driver_license.rb
|
784
|
+
- lib/tdlib/types/passport_element_type/email_address.rb
|
785
|
+
- lib/tdlib/types/passport_element_type/identity_card.rb
|
786
|
+
- lib/tdlib/types/passport_element_type/internal_passport.rb
|
787
|
+
- lib/tdlib/types/passport_element_type/passport.rb
|
788
|
+
- lib/tdlib/types/passport_element_type/passport_registration.rb
|
789
|
+
- lib/tdlib/types/passport_element_type/personal_details.rb
|
790
|
+
- lib/tdlib/types/passport_element_type/phone_number.rb
|
791
|
+
- lib/tdlib/types/passport_element_type/rental_agreement.rb
|
792
|
+
- lib/tdlib/types/passport_element_type/temporary_registration.rb
|
793
|
+
- lib/tdlib/types/passport_element_type/utility_bill.rb
|
794
|
+
- lib/tdlib/types/passport_elements.rb
|
795
|
+
- lib/tdlib/types/passport_elements_with_errors.rb
|
796
|
+
- lib/tdlib/types/passport_required_element.rb
|
797
|
+
- lib/tdlib/types/passport_suitable_element.rb
|
798
|
+
- lib/tdlib/types/password_state.rb
|
799
|
+
- lib/tdlib/types/payment_form.rb
|
800
|
+
- lib/tdlib/types/payment_form_theme.rb
|
801
|
+
- lib/tdlib/types/payment_receipt.rb
|
802
|
+
- lib/tdlib/types/payment_result.rb
|
803
|
+
- lib/tdlib/types/payments_provider_stripe.rb
|
804
|
+
- lib/tdlib/types/personal_details.rb
|
805
|
+
- lib/tdlib/types/personal_document.rb
|
806
|
+
- lib/tdlib/types/phone_number_authentication_settings.rb
|
807
|
+
- lib/tdlib/types/phone_number_info.rb
|
808
|
+
- lib/tdlib/types/photo.rb
|
809
|
+
- lib/tdlib/types/photo_size.rb
|
810
|
+
- lib/tdlib/types/point.rb
|
811
|
+
- lib/tdlib/types/poll.rb
|
812
|
+
- lib/tdlib/types/poll_option.rb
|
813
|
+
- lib/tdlib/types/poll_type.rb
|
814
|
+
- lib/tdlib/types/poll_type/quiz.rb
|
815
|
+
- lib/tdlib/types/poll_type/regular.rb
|
816
|
+
- lib/tdlib/types/profile_photo.rb
|
817
|
+
- lib/tdlib/types/proxies.rb
|
818
|
+
- lib/tdlib/types/proxy.rb
|
819
|
+
- lib/tdlib/types/proxy_type.rb
|
820
|
+
- lib/tdlib/types/proxy_type/http.rb
|
821
|
+
- lib/tdlib/types/proxy_type/mtproto.rb
|
822
|
+
- lib/tdlib/types/proxy_type/socks5.rb
|
823
|
+
- lib/tdlib/types/public_chat_type.rb
|
824
|
+
- lib/tdlib/types/public_chat_type/has_username.rb
|
825
|
+
- lib/tdlib/types/public_chat_type/is_location_based.rb
|
826
|
+
- lib/tdlib/types/push_message_content.rb
|
827
|
+
- lib/tdlib/types/push_message_content/animation.rb
|
828
|
+
- lib/tdlib/types/push_message_content/audio.rb
|
829
|
+
- lib/tdlib/types/push_message_content/basic_group_chat_create.rb
|
830
|
+
- lib/tdlib/types/push_message_content/chat_add_members.rb
|
831
|
+
- lib/tdlib/types/push_message_content/chat_change_photo.rb
|
832
|
+
- lib/tdlib/types/push_message_content/chat_change_title.rb
|
833
|
+
- lib/tdlib/types/push_message_content/chat_delete_member.rb
|
834
|
+
- lib/tdlib/types/push_message_content/chat_join_by_link.rb
|
835
|
+
- lib/tdlib/types/push_message_content/contact.rb
|
836
|
+
- lib/tdlib/types/push_message_content/contact_registered.rb
|
837
|
+
- lib/tdlib/types/push_message_content/document.rb
|
838
|
+
- lib/tdlib/types/push_message_content/game.rb
|
839
|
+
- lib/tdlib/types/push_message_content/game_score.rb
|
840
|
+
- lib/tdlib/types/push_message_content/hidden.rb
|
841
|
+
- lib/tdlib/types/push_message_content/invoice.rb
|
842
|
+
- lib/tdlib/types/push_message_content/location.rb
|
843
|
+
- lib/tdlib/types/push_message_content/media_album.rb
|
844
|
+
- lib/tdlib/types/push_message_content/message_forwards.rb
|
845
|
+
- lib/tdlib/types/push_message_content/photo.rb
|
846
|
+
- lib/tdlib/types/push_message_content/poll.rb
|
847
|
+
- lib/tdlib/types/push_message_content/screenshot_taken.rb
|
848
|
+
- lib/tdlib/types/push_message_content/sticker.rb
|
849
|
+
- lib/tdlib/types/push_message_content/text.rb
|
850
|
+
- lib/tdlib/types/push_message_content/video.rb
|
851
|
+
- lib/tdlib/types/push_message_content/video_note.rb
|
852
|
+
- lib/tdlib/types/push_message_content/voice_note.rb
|
853
|
+
- lib/tdlib/types/push_receiver_id.rb
|
854
|
+
- lib/tdlib/types/recommended_chat_filter.rb
|
855
|
+
- lib/tdlib/types/recommended_chat_filters.rb
|
856
|
+
- lib/tdlib/types/recovery_email_address.rb
|
857
|
+
- lib/tdlib/types/remote_file.rb
|
858
|
+
- lib/tdlib/types/reply_markup.rb
|
859
|
+
- lib/tdlib/types/reply_markup/force_reply.rb
|
860
|
+
- lib/tdlib/types/reply_markup/inline_keyboard.rb
|
861
|
+
- lib/tdlib/types/reply_markup/remove_keyboard.rb
|
862
|
+
- lib/tdlib/types/reply_markup/show_keyboard.rb
|
863
|
+
- lib/tdlib/types/rich_text.rb
|
864
|
+
- lib/tdlib/types/rich_text/anchor.rb
|
865
|
+
- lib/tdlib/types/rich_text/anchor_link.rb
|
866
|
+
- lib/tdlib/types/rich_text/bold.rb
|
867
|
+
- lib/tdlib/types/rich_text/email_address.rb
|
868
|
+
- lib/tdlib/types/rich_text/fixed.rb
|
869
|
+
- lib/tdlib/types/rich_text/icon.rb
|
870
|
+
- lib/tdlib/types/rich_text/italic.rb
|
871
|
+
- lib/tdlib/types/rich_text/marked.rb
|
872
|
+
- lib/tdlib/types/rich_text/phone_number.rb
|
873
|
+
- lib/tdlib/types/rich_text/plain.rb
|
874
|
+
- lib/tdlib/types/rich_text/reference.rb
|
875
|
+
- lib/tdlib/types/rich_text/s.rb
|
876
|
+
- lib/tdlib/types/rich_text/strikethrough.rb
|
877
|
+
- lib/tdlib/types/rich_text/subscript.rb
|
878
|
+
- lib/tdlib/types/rich_text/superscript.rb
|
879
|
+
- lib/tdlib/types/rich_text/underline.rb
|
880
|
+
- lib/tdlib/types/rich_text/url.rb
|
881
|
+
- lib/tdlib/types/saved_credentials.rb
|
882
|
+
- lib/tdlib/types/scope_notification_settings.rb
|
883
|
+
- lib/tdlib/types/search_messages_filter.rb
|
884
|
+
- lib/tdlib/types/search_messages_filter/animation.rb
|
885
|
+
- lib/tdlib/types/search_messages_filter/audio.rb
|
886
|
+
- lib/tdlib/types/search_messages_filter/call.rb
|
887
|
+
- lib/tdlib/types/search_messages_filter/chat_photo.rb
|
888
|
+
- lib/tdlib/types/search_messages_filter/document.rb
|
889
|
+
- lib/tdlib/types/search_messages_filter/empty.rb
|
890
|
+
- lib/tdlib/types/search_messages_filter/failed_to_send.rb
|
891
|
+
- lib/tdlib/types/search_messages_filter/mention.rb
|
892
|
+
- lib/tdlib/types/search_messages_filter/missed_call.rb
|
893
|
+
- lib/tdlib/types/search_messages_filter/photo.rb
|
894
|
+
- lib/tdlib/types/search_messages_filter/photo_and_video.rb
|
895
|
+
- lib/tdlib/types/search_messages_filter/pinned.rb
|
896
|
+
- lib/tdlib/types/search_messages_filter/unread_mention.rb
|
897
|
+
- lib/tdlib/types/search_messages_filter/url.rb
|
898
|
+
- lib/tdlib/types/search_messages_filter/video.rb
|
899
|
+
- lib/tdlib/types/search_messages_filter/video_note.rb
|
900
|
+
- lib/tdlib/types/search_messages_filter/voice_and_video_note.rb
|
901
|
+
- lib/tdlib/types/search_messages_filter/voice_note.rb
|
902
|
+
- lib/tdlib/types/seconds.rb
|
903
|
+
- lib/tdlib/types/secret_chat.rb
|
904
|
+
- lib/tdlib/types/secret_chat_state.rb
|
905
|
+
- lib/tdlib/types/secret_chat_state/closed.rb
|
906
|
+
- lib/tdlib/types/secret_chat_state/pending.rb
|
907
|
+
- lib/tdlib/types/secret_chat_state/ready.rb
|
908
|
+
- lib/tdlib/types/session.rb
|
909
|
+
- lib/tdlib/types/sessions.rb
|
910
|
+
- lib/tdlib/types/shipping_option.rb
|
911
|
+
- lib/tdlib/types/statistical_graph.rb
|
912
|
+
- lib/tdlib/types/statistical_graph/async.rb
|
913
|
+
- lib/tdlib/types/statistical_graph/data.rb
|
914
|
+
- lib/tdlib/types/statistical_graph/error.rb
|
915
|
+
- lib/tdlib/types/statistical_value.rb
|
916
|
+
- lib/tdlib/types/sticker.rb
|
917
|
+
- lib/tdlib/types/sticker_set.rb
|
918
|
+
- lib/tdlib/types/sticker_set_info.rb
|
919
|
+
- lib/tdlib/types/sticker_sets.rb
|
920
|
+
- lib/tdlib/types/stickers.rb
|
921
|
+
- lib/tdlib/types/storage_statistics.rb
|
922
|
+
- lib/tdlib/types/storage_statistics_by_chat.rb
|
923
|
+
- lib/tdlib/types/storage_statistics_by_file_type.rb
|
924
|
+
- lib/tdlib/types/storage_statistics_fast.rb
|
925
|
+
- lib/tdlib/types/suggested_action.rb
|
926
|
+
- lib/tdlib/types/suggested_action/check_phone_number.rb
|
927
|
+
- lib/tdlib/types/suggested_action/convert_to_broadcast_group.rb
|
928
|
+
- lib/tdlib/types/suggested_action/enable_archive_and_mute_new_chats.rb
|
929
|
+
- lib/tdlib/types/suggested_action/see_ticks_hint.rb
|
930
|
+
- lib/tdlib/types/supergroup.rb
|
931
|
+
- lib/tdlib/types/supergroup_full_info.rb
|
932
|
+
- lib/tdlib/types/supergroup_members_filter.rb
|
933
|
+
- lib/tdlib/types/supergroup_members_filter/administrators.rb
|
934
|
+
- lib/tdlib/types/supergroup_members_filter/banned.rb
|
935
|
+
- lib/tdlib/types/supergroup_members_filter/bots.rb
|
936
|
+
- lib/tdlib/types/supergroup_members_filter/contacts.rb
|
937
|
+
- lib/tdlib/types/supergroup_members_filter/mention.rb
|
938
|
+
- lib/tdlib/types/supergroup_members_filter/recent.rb
|
939
|
+
- lib/tdlib/types/supergroup_members_filter/restricted.rb
|
940
|
+
- lib/tdlib/types/supergroup_members_filter/search.rb
|
941
|
+
- lib/tdlib/types/t_me_url.rb
|
942
|
+
- lib/tdlib/types/t_me_url_type.rb
|
943
|
+
- lib/tdlib/types/t_me_url_type/chat_invite.rb
|
944
|
+
- lib/tdlib/types/t_me_url_type/sticker_set.rb
|
945
|
+
- lib/tdlib/types/t_me_url_type/supergroup.rb
|
946
|
+
- lib/tdlib/types/t_me_url_type/user.rb
|
947
|
+
- lib/tdlib/types/t_me_urls.rb
|
948
|
+
- lib/tdlib/types/tdlib_parameters.rb
|
949
|
+
- lib/tdlib/types/temporary_password_state.rb
|
950
|
+
- lib/tdlib/types/terms_of_service.rb
|
951
|
+
- lib/tdlib/types/text.rb
|
952
|
+
- lib/tdlib/types/text_entities.rb
|
953
|
+
- lib/tdlib/types/text_entity.rb
|
954
|
+
- lib/tdlib/types/text_entity_type.rb
|
955
|
+
- lib/tdlib/types/text_entity_type/bank_card_number.rb
|
956
|
+
- lib/tdlib/types/text_entity_type/bold.rb
|
957
|
+
- lib/tdlib/types/text_entity_type/bot_command.rb
|
958
|
+
- lib/tdlib/types/text_entity_type/cashtag.rb
|
959
|
+
- lib/tdlib/types/text_entity_type/code.rb
|
960
|
+
- lib/tdlib/types/text_entity_type/email_address.rb
|
961
|
+
- lib/tdlib/types/text_entity_type/hashtag.rb
|
962
|
+
- lib/tdlib/types/text_entity_type/italic.rb
|
963
|
+
- lib/tdlib/types/text_entity_type/mention.rb
|
964
|
+
- lib/tdlib/types/text_entity_type/mention_name.rb
|
965
|
+
- lib/tdlib/types/text_entity_type/phone_number.rb
|
966
|
+
- lib/tdlib/types/text_entity_type/pre.rb
|
967
|
+
- lib/tdlib/types/text_entity_type/pre_code.rb
|
968
|
+
- lib/tdlib/types/text_entity_type/strikethrough.rb
|
969
|
+
- lib/tdlib/types/text_entity_type/text_url.rb
|
970
|
+
- lib/tdlib/types/text_entity_type/underline.rb
|
971
|
+
- lib/tdlib/types/text_entity_type/url.rb
|
972
|
+
- lib/tdlib/types/text_parse_mode.rb
|
973
|
+
- lib/tdlib/types/text_parse_mode/html.rb
|
974
|
+
- lib/tdlib/types/text_parse_mode/markdown.rb
|
975
|
+
- lib/tdlib/types/thumbnail.rb
|
976
|
+
- lib/tdlib/types/thumbnail_format.rb
|
977
|
+
- lib/tdlib/types/thumbnail_format/gif.rb
|
978
|
+
- lib/tdlib/types/thumbnail_format/jpeg.rb
|
979
|
+
- lib/tdlib/types/thumbnail_format/mpeg4.rb
|
980
|
+
- lib/tdlib/types/thumbnail_format/png.rb
|
981
|
+
- lib/tdlib/types/thumbnail_format/tgs.rb
|
982
|
+
- lib/tdlib/types/thumbnail_format/webp.rb
|
983
|
+
- lib/tdlib/types/top_chat_category.rb
|
984
|
+
- lib/tdlib/types/top_chat_category/bots.rb
|
985
|
+
- lib/tdlib/types/top_chat_category/calls.rb
|
986
|
+
- lib/tdlib/types/top_chat_category/channels.rb
|
987
|
+
- lib/tdlib/types/top_chat_category/forward_chats.rb
|
988
|
+
- lib/tdlib/types/top_chat_category/groups.rb
|
989
|
+
- lib/tdlib/types/top_chat_category/inline_bots.rb
|
990
|
+
- lib/tdlib/types/top_chat_category/users.rb
|
991
|
+
- lib/tdlib/types/update.rb
|
992
|
+
- lib/tdlib/types/update/active_notifications.rb
|
993
|
+
- lib/tdlib/types/update/animation_search_parameters.rb
|
994
|
+
- lib/tdlib/types/update/authorization_state.rb
|
995
|
+
- lib/tdlib/types/update/basic_group.rb
|
996
|
+
- lib/tdlib/types/update/basic_group_full_info.rb
|
997
|
+
- lib/tdlib/types/update/call.rb
|
998
|
+
- lib/tdlib/types/update/chat_action_bar.rb
|
999
|
+
- lib/tdlib/types/update/chat_default_disable_notification.rb
|
1000
|
+
- lib/tdlib/types/update/chat_draft_message.rb
|
1001
|
+
- lib/tdlib/types/update/chat_filters.rb
|
1002
|
+
- lib/tdlib/types/update/chat_has_scheduled_messages.rb
|
1003
|
+
- lib/tdlib/types/update/chat_is_blocked.rb
|
1004
|
+
- lib/tdlib/types/update/chat_is_marked_as_unread.rb
|
1005
|
+
- lib/tdlib/types/update/chat_last_message.rb
|
1006
|
+
- lib/tdlib/types/update/chat_member.rb
|
1007
|
+
- lib/tdlib/types/update/chat_message_ttl_setting.rb
|
1008
|
+
- lib/tdlib/types/update/chat_notification_settings.rb
|
1009
|
+
- lib/tdlib/types/update/chat_online_member_count.rb
|
1010
|
+
- lib/tdlib/types/update/chat_permissions.rb
|
1011
|
+
- lib/tdlib/types/update/chat_photo.rb
|
1012
|
+
- lib/tdlib/types/update/chat_position.rb
|
1013
|
+
- lib/tdlib/types/update/chat_read_inbox.rb
|
1014
|
+
- lib/tdlib/types/update/chat_read_outbox.rb
|
1015
|
+
- lib/tdlib/types/update/chat_reply_markup.rb
|
1016
|
+
- lib/tdlib/types/update/chat_title.rb
|
1017
|
+
- lib/tdlib/types/update/chat_unread_mention_count.rb
|
1018
|
+
- lib/tdlib/types/update/chat_voice_chat.rb
|
1019
|
+
- lib/tdlib/types/update/connection_state.rb
|
1020
|
+
- lib/tdlib/types/update/delete_messages.rb
|
1021
|
+
- lib/tdlib/types/update/dice_emojis.rb
|
1022
|
+
- lib/tdlib/types/update/favorite_stickers.rb
|
1023
|
+
- lib/tdlib/types/update/file.rb
|
1024
|
+
- lib/tdlib/types/update/file_generation_start.rb
|
1025
|
+
- lib/tdlib/types/update/file_generation_stop.rb
|
1026
|
+
- lib/tdlib/types/update/group_call.rb
|
1027
|
+
- lib/tdlib/types/update/group_call_participant.rb
|
1028
|
+
- lib/tdlib/types/update/have_pending_notifications.rb
|
1029
|
+
- lib/tdlib/types/update/installed_sticker_sets.rb
|
1030
|
+
- lib/tdlib/types/update/language_pack_strings.rb
|
1031
|
+
- lib/tdlib/types/update/message_content.rb
|
1032
|
+
- lib/tdlib/types/update/message_content_opened.rb
|
1033
|
+
- lib/tdlib/types/update/message_edited.rb
|
1034
|
+
- lib/tdlib/types/update/message_interaction_info.rb
|
1035
|
+
- lib/tdlib/types/update/message_is_pinned.rb
|
1036
|
+
- lib/tdlib/types/update/message_live_location_viewed.rb
|
1037
|
+
- lib/tdlib/types/update/message_mention_read.rb
|
1038
|
+
- lib/tdlib/types/update/message_send_acknowledged.rb
|
1039
|
+
- lib/tdlib/types/update/message_send_failed.rb
|
1040
|
+
- lib/tdlib/types/update/message_send_succeeded.rb
|
1041
|
+
- lib/tdlib/types/update/new_call_signaling_data.rb
|
1042
|
+
- lib/tdlib/types/update/new_callback_query.rb
|
1043
|
+
- lib/tdlib/types/update/new_chat.rb
|
1044
|
+
- lib/tdlib/types/update/new_chosen_inline_result.rb
|
1045
|
+
- lib/tdlib/types/update/new_custom_event.rb
|
1046
|
+
- lib/tdlib/types/update/new_custom_query.rb
|
1047
|
+
- lib/tdlib/types/update/new_inline_callback_query.rb
|
1048
|
+
- lib/tdlib/types/update/new_inline_query.rb
|
1049
|
+
- lib/tdlib/types/update/new_message.rb
|
1050
|
+
- lib/tdlib/types/update/new_pre_checkout_query.rb
|
1051
|
+
- lib/tdlib/types/update/new_shipping_query.rb
|
1052
|
+
- lib/tdlib/types/update/notification.rb
|
1053
|
+
- lib/tdlib/types/update/notification_group.rb
|
1054
|
+
- lib/tdlib/types/update/option.rb
|
1055
|
+
- lib/tdlib/types/update/poll.rb
|
1056
|
+
- lib/tdlib/types/update/poll_answer.rb
|
1057
|
+
- lib/tdlib/types/update/recent_stickers.rb
|
1058
|
+
- lib/tdlib/types/update/saved_animations.rb
|
1059
|
+
- lib/tdlib/types/update/scope_notification_settings.rb
|
1060
|
+
- lib/tdlib/types/update/secret_chat.rb
|
1061
|
+
- lib/tdlib/types/update/selected_background.rb
|
1062
|
+
- lib/tdlib/types/update/service_notification.rb
|
1063
|
+
- lib/tdlib/types/update/sticker_set.rb
|
1064
|
+
- lib/tdlib/types/update/suggested_actions.rb
|
1065
|
+
- lib/tdlib/types/update/supergroup.rb
|
1066
|
+
- lib/tdlib/types/update/supergroup_full_info.rb
|
1067
|
+
- lib/tdlib/types/update/terms_of_service.rb
|
1068
|
+
- lib/tdlib/types/update/trending_sticker_sets.rb
|
1069
|
+
- lib/tdlib/types/update/unread_chat_count.rb
|
1070
|
+
- lib/tdlib/types/update/unread_message_count.rb
|
1071
|
+
- lib/tdlib/types/update/user.rb
|
1072
|
+
- lib/tdlib/types/update/user_chat_action.rb
|
1073
|
+
- lib/tdlib/types/update/user_full_info.rb
|
1074
|
+
- lib/tdlib/types/update/user_privacy_setting_rules.rb
|
1075
|
+
- lib/tdlib/types/update/user_status.rb
|
1076
|
+
- lib/tdlib/types/update/users_nearby.rb
|
1077
|
+
- lib/tdlib/types/updates.rb
|
1078
|
+
- lib/tdlib/types/user.rb
|
1079
|
+
- lib/tdlib/types/user_full_info.rb
|
1080
|
+
- lib/tdlib/types/user_privacy_setting.rb
|
1081
|
+
- lib/tdlib/types/user_privacy_setting/allow_calls.rb
|
1082
|
+
- lib/tdlib/types/user_privacy_setting/allow_chat_invites.rb
|
1083
|
+
- lib/tdlib/types/user_privacy_setting/allow_finding_by_phone_number.rb
|
1084
|
+
- lib/tdlib/types/user_privacy_setting/allow_peer_to_peer_calls.rb
|
1085
|
+
- lib/tdlib/types/user_privacy_setting/show_link_in_forwarded_messages.rb
|
1086
|
+
- lib/tdlib/types/user_privacy_setting/show_phone_number.rb
|
1087
|
+
- lib/tdlib/types/user_privacy_setting/show_profile_photo.rb
|
1088
|
+
- lib/tdlib/types/user_privacy_setting/show_status.rb
|
1089
|
+
- lib/tdlib/types/user_privacy_setting_rule.rb
|
1090
|
+
- lib/tdlib/types/user_privacy_setting_rule/allow_all.rb
|
1091
|
+
- lib/tdlib/types/user_privacy_setting_rule/allow_chat_members.rb
|
1092
|
+
- lib/tdlib/types/user_privacy_setting_rule/allow_contacts.rb
|
1093
|
+
- lib/tdlib/types/user_privacy_setting_rule/allow_users.rb
|
1094
|
+
- lib/tdlib/types/user_privacy_setting_rule/restrict_all.rb
|
1095
|
+
- lib/tdlib/types/user_privacy_setting_rule/restrict_chat_members.rb
|
1096
|
+
- lib/tdlib/types/user_privacy_setting_rule/restrict_contacts.rb
|
1097
|
+
- lib/tdlib/types/user_privacy_setting_rule/restrict_users.rb
|
1098
|
+
- lib/tdlib/types/user_privacy_setting_rules.rb
|
1099
|
+
- lib/tdlib/types/user_status.rb
|
1100
|
+
- lib/tdlib/types/user_status/empty.rb
|
1101
|
+
- lib/tdlib/types/user_status/last_month.rb
|
1102
|
+
- lib/tdlib/types/user_status/last_week.rb
|
1103
|
+
- lib/tdlib/types/user_status/offline.rb
|
1104
|
+
- lib/tdlib/types/user_status/online.rb
|
1105
|
+
- lib/tdlib/types/user_status/recently.rb
|
1106
|
+
- lib/tdlib/types/user_type.rb
|
1107
|
+
- lib/tdlib/types/user_type/bot.rb
|
1108
|
+
- lib/tdlib/types/user_type/deleted.rb
|
1109
|
+
- lib/tdlib/types/user_type/regular.rb
|
1110
|
+
- lib/tdlib/types/user_type/unknown.rb
|
1111
|
+
- lib/tdlib/types/users.rb
|
1112
|
+
- lib/tdlib/types/validated_order_info.rb
|
1113
|
+
- lib/tdlib/types/vector_path_command.rb
|
1114
|
+
- lib/tdlib/types/vector_path_command/cubic_bezier_curve.rb
|
1115
|
+
- lib/tdlib/types/vector_path_command/line.rb
|
1116
|
+
- lib/tdlib/types/venue.rb
|
1117
|
+
- lib/tdlib/types/video.rb
|
1118
|
+
- lib/tdlib/types/video_note.rb
|
1119
|
+
- lib/tdlib/types/voice_chat.rb
|
1120
|
+
- lib/tdlib/types/voice_note.rb
|
1121
|
+
- lib/tdlib/types/web_page.rb
|
1122
|
+
- lib/tdlib/types/web_page_instant_view.rb
|
1123
|
+
- tdlib-schema.gemspec
|
1124
|
+
homepage: https://github.com/southbridgeio/tdlib-schema
|
1125
|
+
licenses:
|
1126
|
+
- MIT
|
1127
|
+
metadata:
|
1128
|
+
homepage_uri: https://github.com/southbridgeio/tdlib-schema
|
1129
|
+
source_code_uri: https://github.com/southbridgeio/tdlib-schema
|
1130
|
+
post_install_message:
|
1131
|
+
rdoc_options: []
|
1132
|
+
require_paths:
|
1133
|
+
- lib
|
1134
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
1135
|
+
requirements:
|
1136
|
+
- - ">="
|
1137
|
+
- !ruby/object:Gem::Version
|
1138
|
+
version: 2.6.0
|
1139
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
1140
|
+
requirements:
|
1141
|
+
- - ">="
|
1142
|
+
- !ruby/object:Gem::Version
|
1143
|
+
version: '0'
|
1144
|
+
requirements: []
|
1145
|
+
rubygems_version: 3.1.4
|
1146
|
+
signing_key:
|
1147
|
+
specification_version: 4
|
1148
|
+
summary: TDLib schema for tdlib-ruby gem
|
1149
|
+
test_files: []
|