class SuccessDefinition
Attributes
content[RW]
part[RW]
type[RW]
Public Class Methods
new(args)
click to toggle source
# File lib/value_object.rb, line 25 def initialize(args) obj = OpenStruct.new(args) @part = obj.part @type = obj.type @content = obj.content end
Public Instance Methods
get_binding()
click to toggle source
# File lib/value_object.rb, line 32 def get_binding binding end