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.



7784
7785
7786
7787
7788
7789
7790
7791
7792
7793
7794
7795
7796
# File 'lib/models/porcelain.rb', line 7784

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.



7774
7775
7776
# File 'lib/models/porcelain.rb', line 7774

def accounts
  @accounts
end

#approval_flowsObject

The affected approval flows.



7776
7777
7778
# File 'lib/models/porcelain.rb', line 7776

def approval_flows
  @approval_flows
end

#groupObject

The group created from the source role.



7778
7779
7780
# File 'lib/models/porcelain.rb', line 7778

def group
  @group
end

#rate_limitObject

Rate limit information.



7780
7781
7782
# File 'lib/models/porcelain.rb', line 7780

def rate_limit
  @rate_limit
end

#roleObject

The source role.



7782
7783
7784
# File 'lib/models/porcelain.rb', line 7782

def role
  @role
end

Instance Method Details

#to_json(options = {}) ⇒ Object



7798
7799
7800
7801
7802
7803
7804
# File 'lib/models/porcelain.rb', line 7798

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