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.
8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 |
# File 'lib/models/porcelain.rb', line 8444 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.
8434 8435 8436 |
# File 'lib/models/porcelain.rb', line 8434 def accounts @accounts end |
#approval_flows ⇒ Object
The affected approval flows.
8436 8437 8438 |
# File 'lib/models/porcelain.rb', line 8436 def approval_flows @approval_flows end |
#group ⇒ Object
The group created from the source role.
8438 8439 8440 |
# File 'lib/models/porcelain.rb', line 8438 def group @group end |
#rate_limit ⇒ Object
Rate limit information.
8440 8441 8442 |
# File 'lib/models/porcelain.rb', line 8440 def rate_limit @rate_limit end |
#role ⇒ Object
The source role.
8442 8443 8444 |
# File 'lib/models/porcelain.rb', line 8442 def role @role end |
Instance Method Details
#to_json(options = {}) ⇒ Object
8458 8459 8460 8461 8462 8463 8464 |
# File 'lib/models/porcelain.rb', line 8458 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 |