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.



7867
7868
7869
7870
7871
7872
7873
7874
7875
7876
7877
7878
7879
# File 'lib/models/porcelain.rb', line 7867

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.



7857
7858
7859
# File 'lib/models/porcelain.rb', line 7857

def accounts
  @accounts
end

#approval_flowsObject

The affected approval flows.



7859
7860
7861
# File 'lib/models/porcelain.rb', line 7859

def approval_flows
  @approval_flows
end

#groupObject

The group created from the source role.



7861
7862
7863
# File 'lib/models/porcelain.rb', line 7861

def group
  @group
end

#rate_limitObject

Rate limit information.



7863
7864
7865
# File 'lib/models/porcelain.rb', line 7863

def rate_limit
  @rate_limit
end

#roleObject

The source role.



7865
7866
7867
# File 'lib/models/porcelain.rb', line 7865

def role
  @role
end

Instance Method Details

#to_json(options = {}) ⇒ Object



7881
7882
7883
7884
7885
7886
7887
# File 'lib/models/porcelain.rb', line 7881

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