Sha256: 4cc0a8eb98ccb77944fc5227d359ae447cb8b281a64dd42c5618040730c77c28

Contents?: true

Size: 401 Bytes

Versions: 6

Compression:

Stored size: 401 Bytes

Contents

module TD::Types
  # The call is pending, waiting to be accepted by a user.
  #
  # @attr is_created [Boolean] True, if the call has already been created by the server.
  # @attr is_received [Boolean] True, if the call has already been received by the other party.
  class CallState::Pending < CallState
    attribute :is_created, TD::Types::Bool
    attribute :is_received, TD::Types::Bool
  end
end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
tdlib-schema-1.7.0.3 lib/tdlib/types/call_state/pending.rb
tdlib-schema-1.7.0.2 lib/tdlib/types/call_state/pending.rb
tdlib-schema-1.7.0.1 lib/tdlib/types/call_state/pending.rb
tdlib-ruby-2.2.0 lib/tdlib/types/call_state/pending.rb
tdlib-ruby-2.1.0 lib/tdlib/types/call_state/pending.rb
tdlib-ruby-2.0.0 lib/tdlib/types/call_state/pending.rb