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.



7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
# File 'lib/models/porcelain.rb', line 7391

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.



7381
7382
7383
# File 'lib/models/porcelain.rb', line 7381

def accounts
  @accounts
end

#approval_flowsObject

The affected approval flows.



7383
7384
7385
# File 'lib/models/porcelain.rb', line 7383

def approval_flows
  @approval_flows
end

#groupObject

The group created from the source role.



7385
7386
7387
# File 'lib/models/porcelain.rb', line 7385

def group
  @group
end

#rate_limitObject

Rate limit information.



7387
7388
7389
# File 'lib/models/porcelain.rb', line 7387

def rate_limit
  @rate_limit
end

#roleObject

The source role.



7389
7390
7391
# File 'lib/models/porcelain.rb', line 7389

def role
  @role
end

Instance Method Details

#to_json(options = {}) ⇒ Object



7405
7406
7407
7408
7409
7410
7411
# File 'lib/models/porcelain.rb', line 7405

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