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.



7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
# File 'lib/models/porcelain.rb', line 7307

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.



7297
7298
7299
# File 'lib/models/porcelain.rb', line 7297

def accounts
  @accounts
end

#approval_flowsObject

The affected approval flows.



7299
7300
7301
# File 'lib/models/porcelain.rb', line 7299

def approval_flows
  @approval_flows
end

#groupObject

The group created from the source role.



7301
7302
7303
# File 'lib/models/porcelain.rb', line 7301

def group
  @group
end

#rate_limitObject

Rate limit information.



7303
7304
7305
# File 'lib/models/porcelain.rb', line 7303

def rate_limit
  @rate_limit
end

#roleObject

The source role.



7305
7306
7307
# File 'lib/models/porcelain.rb', line 7305

def role
  @role
end

Instance Method Details

#to_json(options = {}) ⇒ Object



7321
7322
7323
7324
7325
7326
7327
# File 'lib/models/porcelain.rb', line 7321

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