Sha256: 2d0626e043fb0a2cba2972f38c4134b6058e61bf6b470f81c6c653557cb188a9

Contents?: true

Size: 566 Bytes

Versions: 1

Compression:

Stored size: 566 Bytes

Contents

module TD::Types
  # Describes a call.
  #
  # @attr id [Integer] Call identifier, not persistent.
  # @attr user_id [Integer] Peer user identifier.
  # @attr is_outgoing [Boolean] True, if the call is outgoing.
  # @attr is_video [Boolean] True, if the call is a video call.
  # @attr state [TD::Types::CallState] Call state.
  class Call < Base
    attribute :id, TD::Types::Integer
    attribute :user_id, TD::Types::Integer
    attribute :is_outgoing, TD::Types::Bool
    attribute :is_video, TD::Types::Bool
    attribute :state, TD::Types::CallState
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tdlib-schema-1.7.0.1 lib/tdlib/types/call.rb