View Source Telegex.Type.ChatMemberRestricted (Telegex v1.8.0)

Represents a chat member that is under certain restrictions in the chat. Supergroups only.

Summary

Types

@type t() :: %Telegex.Type.ChatMemberRestricted{
  can_add_web_page_previews: boolean(),
  can_change_info: boolean(),
  can_invite_users: boolean(),
  can_manage_topics: boolean(),
  can_pin_messages: boolean(),
  can_send_audios: boolean(),
  can_send_documents: boolean(),
  can_send_messages: boolean(),
  can_send_other_messages: boolean(),
  can_send_photos: boolean(),
  can_send_polls: boolean(),
  can_send_video_notes: boolean(),
  can_send_videos: boolean(),
  can_send_voice_notes: boolean(),
  is_member: boolean(),
  status: String.t(),
  until_date: integer(),
  user: Telegex.Type.User.t()
}