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.
7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 |
# File 'lib/models/porcelain.rb', line 7915 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.
7905 7906 7907 |
# File 'lib/models/porcelain.rb', line 7905 def accounts @accounts end |
#approval_flows ⇒ Object
The affected approval flows.
7907 7908 7909 |
# File 'lib/models/porcelain.rb', line 7907 def approval_flows @approval_flows end |
#group ⇒ Object
The group created from the source role.
7909 7910 7911 |
# File 'lib/models/porcelain.rb', line 7909 def group @group end |
#rate_limit ⇒ Object
Rate limit information.
7911 7912 7913 |
# File 'lib/models/porcelain.rb', line 7911 def rate_limit @rate_limit end |
#role ⇒ Object
The source role.
7913 7914 7915 |
# File 'lib/models/porcelain.rb', line 7913 def role @role end |
Instance Method Details
#to_json(options = {}) ⇒ Object
7929 7930 7931 7932 7933 7934 7935 |
# File 'lib/models/porcelain.rb', line 7929 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 |