Class: SDM::RoleCreateResponse

Inherits:
Object
  • Object
show all
Defined in:
lib/models/porcelain.rb

Overview

RoleCreateResponse reports how the Roles were created in the system. It can communicate partial successes or failures.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(meta: nil, role: nil, rate_limit: nil) ⇒ RoleCreateResponse

Returns a new instance of RoleCreateResponse.



6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
# File 'lib/models/porcelain.rb', line 6502

def initialize(
  meta: nil,
  role: nil,
  rate_limit: nil
)
  if meta != nil
    @meta = meta
  end
  if role != nil
    @role = role
  end
  if rate_limit != nil
    @rate_limit = rate_limit
  end
end

Instance Attribute Details

#metaObject

Reserved for future use.



6496
6497
6498
# File 'lib/models/porcelain.rb', line 6496

def meta
  @meta
end

#rate_limitObject

Rate limit information.



6500
6501
6502
# File 'lib/models/porcelain.rb', line 6500

def rate_limit
  @rate_limit
end

#roleObject

The created Role.



6498
6499
6500
# File 'lib/models/porcelain.rb', line 6498

def role
  @role
end

Instance Method Details

#to_json(options = {}) ⇒ Object



6518
6519
6520
6521
6522
6523
6524
# File 'lib/models/porcelain.rb', line 6518

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