Class: Org::Familysearch::Ws::Familytree::V2::Schema::ChangeAction

Inherits:
Object
  • Object
show all
Defined in:
lib/ruby-fs-stack/enunciate/familytree.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#typeObject

the change action type.



137
138
139
# File 'lib/ruby-fs-stack/enunciate/familytree.rb', line 137

def type
  @type
end

#valueObject

the action value.



139
140
141
# File 'lib/ruby-fs-stack/enunciate/familytree.rb', line 139

def value
  @value
end

Class Method Details

.from_json(o) ⇒ Object

constructs a ChangeAction from a (parsed) JSON hash



161
162
163
164
165
166
167
168
169
# File 'lib/ruby-fs-stack/enunciate/familytree.rb', line 161

def self.from_json(o)
  if o.nil?
    return nil
  else
    inst = new
    inst.init_jaxb_json_hash o
    return inst
  end
end

Instance Method Details

#init_jaxb_json_hash(_o) ⇒ Object

initializes this ChangeAction with a json hash



155
156
157
158
# File 'lib/ruby-fs-stack/enunciate/familytree.rb', line 155

def init_jaxb_json_hash(_o)
  @type = String.from_json(_o['type']) unless _o['type'].nil?
  @value = String.from_json(_o['value']) unless _o['value'].nil?
end

#to_jaxb_json_hashObject

the json hash for this ChangeAction



142
143
144
145
146
147
# File 'lib/ruby-fs-stack/enunciate/familytree.rb', line 142

def to_jaxb_json_hash
  _h = {}
  _h['type'] = type.to_jaxb_json_hash unless type.nil?
  _h['value'] = value.to_jaxb_json_hash unless value.nil?
  return _h
end

#to_jsonObject

the json (string form) for this ChangeAction



150
151
152
# File 'lib/ruby-fs-stack/enunciate/familytree.rb', line 150

def to_json
  to_jaxb_json_hash.to_json
end