Class: SDM::RemoteIdentityGroup

Inherits:
Object
  • Object
show all
Defined in:
lib/models/porcelain.rb

Overview

A RemoteIdentityGroup defines a group of remote identities.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id: nil, name: nil) ⇒ RemoteIdentityGroup

Returns a new instance of RemoteIdentityGroup.



15706
15707
15708
15709
15710
15711
15712
# File 'lib/models/porcelain.rb', line 15706

def initialize(
  id: nil,
  name: nil
)
  @id = id == nil ? "" : id
  @name = name == nil ? "" : name
end

Instance Attribute Details

#idObject

Unique identifier of the RemoteIdentityGroup.



15702
15703
15704
# File 'lib/models/porcelain.rb', line 15702

def id
  @id
end

#nameObject

Unique human-readable name of the RemoteIdentityGroup.



15704
15705
15706
# File 'lib/models/porcelain.rb', line 15704

def name
  @name
end

Instance Method Details

#to_json(options = {}) ⇒ Object



15714
15715
15716
15717
15718
15719
15720
# File 'lib/models/porcelain.rb', line 15714

def to_json(options = {})
  hash = {}
  self.instance_variables.each do |var|
    hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
  end
  hash.to_json
end