Class: SDM::IdentitySet
- Inherits:
-
Object
- Object
- SDM::IdentitySet
- Defined in:
- lib/models/porcelain.rb
Overview
A IdentitySet defines a group of identity aliases.
Instance Attribute Summary collapse
-
#id ⇒ Object
Unique identifier of the IdentitySet.
-
#name ⇒ Object
Unique human-readable name of the IdentitySet.
Instance Method Summary collapse
-
#initialize(id: nil, name: nil) ⇒ IdentitySet
constructor
A new instance of IdentitySet.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(id: nil, name: nil) ⇒ IdentitySet
7420 7421 7422 7423 7424 7425 7426 |
# File 'lib/models/porcelain.rb', line 7420 def initialize( id: nil, name: nil ) @id = id == nil ? "" : id @name = name == nil ? "" : name end |
Instance Attribute Details
#id ⇒ Object
Unique identifier of the IdentitySet.
7416 7417 7418 |
# File 'lib/models/porcelain.rb', line 7416 def id @id end |
#name ⇒ Object
Unique human-readable name of the IdentitySet.
7418 7419 7420 |
# File 'lib/models/porcelain.rb', line 7418 def name @name end |
Instance Method Details
#to_json(options = {}) ⇒ Object
7428 7429 7430 7431 7432 7433 7434 |
# File 'lib/models/porcelain.rb', line 7428 def to_json( = {}) hash = {} self.instance_variables.each do |var| hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var end hash.to_json end |