Sha256: 8333fd862dbd6969cdbd2f973b31ef3df98c1139a1eb685df5f1b68792c56cfe
Contents?: true
Size: 362 Bytes
Versions: 3
Compression:
Stored size: 362 Bytes
Contents
# encoding: utf-8 module TingYun module Agent class Transaction class Attributes attr_accessor :agent_attributes def initialize @agent_attributes = {} end def add_agent_attribute(key, value) return if value.nil? @agent_attributes[key] = value end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems