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.



8278
8279
8280
8281
8282
8283
8284
8285
8286
8287
8288
8289
8290
# File 'lib/models/porcelain.rb', line 8278

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.



8268
8269
8270
# File 'lib/models/porcelain.rb', line 8268

def accounts
  @accounts
end

#approval_flowsObject

The affected approval flows.



8270
8271
8272
# File 'lib/models/porcelain.rb', line 8270

def approval_flows
  @approval_flows
end

#groupObject

The group created from the source role.



8272
8273
8274
# File 'lib/models/porcelain.rb', line 8272

def group
  @group
end

#rate_limitObject

Rate limit information.



8274
8275
8276
# File 'lib/models/porcelain.rb', line 8274

def rate_limit
  @rate_limit
end

#roleObject

The source role.



8276
8277
8278
# File 'lib/models/porcelain.rb', line 8276

def role
  @role
end

Instance Method Details

#to_json(options = {}) ⇒ Object



8292
8293
8294
8295
8296
8297
8298
# File 'lib/models/porcelain.rb', line 8292

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