Class: SDM::GroupFromRole

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(accounts: nil, approval_flows: nil, group: nil, rate_limit: nil, role: nil) ⇒ GroupFromRole

Returns a new instance of GroupFromRole.



8418
8419
8420
8421
8422
8423
8424
8425
8426
8427
8428
8429
8430
# File 'lib/models/porcelain.rb', line 8418

def initialize(
  accounts: nil,
  approval_flows: nil,
  group: nil,
  rate_limit: nil,
  role: nil
)
  @accounts = accounts == nil ? [] : accounts
  @approval_flows = approval_flows == nil ? [] : approval_flows
  @group = group == nil ? nil : group
  @rate_limit = rate_limit == nil ? nil : rate_limit
  @role = role == nil ? nil : role
end

Instance Attribute Details

#accountsObject

The migrated Accounts.



8408
8409
8410
# File 'lib/models/porcelain.rb', line 8408

def accounts
  @accounts
end

#approval_flowsObject

The affected approval flows.



8410
8411
8412
# File 'lib/models/porcelain.rb', line 8410

def approval_flows
  @approval_flows
end

#groupObject

The group created from the source role.



8412
8413
8414
# File 'lib/models/porcelain.rb', line 8412

def group
  @group
end

#rate_limitObject

Rate limit information.



8414
8415
8416
# File 'lib/models/porcelain.rb', line 8414

def rate_limit
  @rate_limit
end

#roleObject

The source role.



8416
8417
8418
# File 'lib/models/porcelain.rb', line 8416

def role
  @role
end

Instance Method Details

#to_json(options = {}) ⇒ Object



8432
8433
8434
8435
8436
8437
8438
# File 'lib/models/porcelain.rb', line 8432

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