Class: SDM::GroupFromRole
- Inherits:
-
Object
- Object
- SDM::GroupFromRole
- Defined in:
- lib/models/porcelain.rb
Instance Attribute Summary collapse
-
#accounts ⇒ Object
The migrated Accounts.
-
#approval_flows ⇒ Object
The affected approval flows.
-
#group ⇒ Object
The group created from the source role.
-
#rate_limit ⇒ Object
Rate limit information.
-
#role ⇒ Object
The source role.
Instance Method Summary collapse
-
#initialize(accounts: nil, approval_flows: nil, group: nil, rate_limit: nil, role: nil) ⇒ GroupFromRole
constructor
A new instance of GroupFromRole.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(accounts: nil, approval_flows: nil, group: nil, rate_limit: nil, role: nil) ⇒ GroupFromRole
Returns a new instance of GroupFromRole.
7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 |
# File 'lib/models/porcelain.rb', line 7299 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
#accounts ⇒ Object
The migrated Accounts.
7289 7290 7291 |
# File 'lib/models/porcelain.rb', line 7289 def accounts @accounts end |
#approval_flows ⇒ Object
The affected approval flows.
7291 7292 7293 |
# File 'lib/models/porcelain.rb', line 7291 def approval_flows @approval_flows end |
#group ⇒ Object
The group created from the source role.
7293 7294 7295 |
# File 'lib/models/porcelain.rb', line 7293 def group @group end |
#rate_limit ⇒ Object
Rate limit information.
7295 7296 7297 |
# File 'lib/models/porcelain.rb', line 7295 def rate_limit @rate_limit end |
#role ⇒ Object
The source role.
7297 7298 7299 |
# File 'lib/models/porcelain.rb', line 7297 def role @role end |
Instance Method Details
#to_json(options = {}) ⇒ Object
7313 7314 7315 7316 7317 7318 7319 |
# File 'lib/models/porcelain.rb', line 7313 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 |