Sha256: c75bbe1c25e2a2c1165ae910585b0fc8c88e752b1786e9b1c0bdc444d97070f7

Contents?: true

Size: 796 Bytes

Versions: 13

Compression:

Stored size: 796 Bytes

Contents

#--
# Ruby Whois
#
# An intelligent pure Ruby WHOIS client and parser.
#
# Copyright (c) 2009-2013 Simone Carletti <weppos@weppos.net>
#++


require 'whois/record/super_struct'


module Whois
  class Record

    # Holds the details of the Registrar extracted from the WHOIS response.
    #
    # A registrar is composed by the several attributes,
    # accessible through corresponding getter / setter methods.
    #
    # Please note that a response is not required to provide
    # all the attributes. When an attribute is not available,
    # the corresponding value is set to nil.
    #
    # @attr [String] id
    # @attr [String] name
    # @attr [String] organization
    # @attr [String] url
    #
    class Registrar < SuperStruct.new(:id, :name, :organization, :url)
    end

  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
whois-3.4.3 lib/whois/record/registrar.rb
whois-3.4.2 lib/whois/record/registrar.rb
whois-3.4.1 lib/whois/record/registrar.rb
whois-3.4.0 lib/whois/record/registrar.rb
whois-3.3.1 lib/whois/record/registrar.rb
whois-3.3.0 lib/whois/record/registrar.rb
whois-3.2.1 lib/whois/record/registrar.rb
whois-3.2.0 lib/whois/record/registrar.rb
whois-3.1.3 lib/whois/record/registrar.rb
whois-3.1.2 lib/whois/record/registrar.rb
whois-3.1.1 lib/whois/record/registrar.rb
whois-3.1.0 lib/whois/record/registrar.rb
whois-3.0.0 lib/whois/record/registrar.rb