Sha256: e621c8a0d1d15e48a2bcb257c28a5c9bee3498733e33ee0039b7b1f7db189af8
Contents?: true
Size: 331 Bytes
Versions: 12
Compression:
Stored size: 331 Bytes
Contents
module Hieracles module Puppetdb class Response attr_reader :data, :total_records, :notifications attr_writer :data def initialize(data, total_records = nil, notifications = nil) @data = data @total_records = total_records @notifications = notifications end end end end
Version data entries
12 entries across 12 versions & 1 rubygems