Sha256: 291076d1d8e0764c2cd0e24dd24f305e4d50e454e7fc5493b96aeb74360cbda6
Contents?: true
Size: 606 Bytes
Versions: 43
Compression:
Stored size: 606 Bytes
Contents
# frozen_string_literal: true module Files class PairedApiKey attr_reader :options, :attributes def initialize(attributes = {}, options = {}) @attributes = attributes || {} @options = options || {} end # string - Site URL def server @attributes[:server] end # string - Paired api key username def username @attributes[:username] end # string - Paired api key password def password @attributes[:password] end # string - Unique nickname for this api key def nickname @attributes[:nickname] end end end
Version data entries
43 entries across 43 versions & 1 rubygems