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

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

Overview

An exists value.

Instance Attribute Summary

Attributes inherited from AssertionValue

#id, #title

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from AssertionValue

#to_json

Class Method Details

.from_json(o) ⇒ Object

constructs a ExistsValue from a (parsed) JSON hash



5214
5215
5216
5217
5218
5219
5220
5221
5222
# File 'lib/ruby-fs-stack/enunciate/familytree.rb', line 5214

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 ExistsValue with a json hash



5209
5210
5211
# File 'lib/ruby-fs-stack/enunciate/familytree.rb', line 5209

def init_jaxb_json_hash(_o)
  super _o
end

#to_jaxb_json_hashObject

the json hash for this ExistsValue



5203
5204
5205
5206
# File 'lib/ruby-fs-stack/enunciate/familytree.rb', line 5203

def to_jaxb_json_hash
  _h = super
  return _h
end