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:

  • id (String)


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

def initialize(id)
  @id = id
end

Instance Attribute Details

#idObject

Returns the value of attribute id.



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

def id
  @id
end

Instance Method Details

#==(other) ⇒ Object



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

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

#to_jsonObject



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

def to_json
  @id
end