Sha256: 1387e9eebaa4e21a42dacbea643c76f6fb9f0c305c7272fb43cbb27e098d22ce

Contents?: true

Size: 373 Bytes

Versions: 2

Compression:

Stored size: 373 Bytes

Contents

module TD::Types
  # Represents the relationship between user A and user B.
  # For incoming_link, user A is the current user; for outgoing_link, user B is the current user.
  class LinkState < Base
    %w[
      none
      knows_phone_number
      is_contact
    ].each do |type|
      autoload TD::Types.camelize(type), "tdlib/types/link_state/#{type}"
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
tdlib-ruby-2.1.0 lib/tdlib/types/link_state.rb
tdlib-ruby-2.0.0 lib/tdlib/types/link_state.rb