Class: CaTissue::ConsentTierStatus

Inherits:
Object
  • Object
show all
Includes:
Resource
Defined in:
lib/catissue/domain/consent_tier_status.rb

Instance Method Summary collapse

Methods included from Resource

#database, included, #tolerant_match?

Methods included from Annotatable

#annotation_proxy, #create_proxy, #method_missing

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class CaTissue::Annotatable

Instance Method Details

#minimal_match?(other) ⇒ Boolean

Returns whether this ConsentTierStatus is minimally consistent with the other ConsentTierStatus. This method returns whether the referenced ConsentTier has the same identifer or statement text as the other referenced ConsentTier.

Returns:

  • (Boolean)


17
18
19
# File 'lib/catissue/domain/consent_tier_status.rb', line 17

def minimal_match?(other)
  super and statement_match?(other)
end