Class: HQMF::Reference

Inherits:
Object
  • Object
show all
Includes:
Conversion::Utilities
Defined in:
lib/hqmf-model/types.rb

Overview

Represents a HQMF reference from a precondition to a data criteria

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Conversion::Utilities

#build_hash, #check_equality, #json_array, #openstruct_to_json

Constructor Details

#initialize(id) ⇒ Reference

Create a new HQMF::Reference

Parameters:



305
306
307
# File 'lib/hqmf-model/types.rb', line 305

def initialize(id)
  @id = id
end

Instance Attribute Details

#idObject

Returns the value of attribute id.



301
302
303
# File 'lib/hqmf-model/types.rb', line 301

def id
  @id
end

Instance Method Details

#==(other) ⇒ Object



313
314
315
# File 'lib/hqmf-model/types.rb', line 313

def ==(other)
  check_equality(self,other)
end

#to_jsonObject



309
310
311
# File 'lib/hqmf-model/types.rb', line 309

def to_json
  @id
end