Class: SDM::RoleUpdateResponse
- Inherits:
-
Object
- Object
- SDM::RoleUpdateResponse
- Defined in:
- lib/models/porcelain.rb
Overview
RoleUpdateResponse returns the fields of a Role after it has been updated by a RoleUpdateRequest.
Instance Attribute Summary collapse
-
#meta ⇒ Object
Reserved for future use.
-
#rate_limit ⇒ Object
Rate limit information.
-
#role ⇒ Object
The updated Role.
Instance Method Summary collapse
-
#initialize(meta: nil, role: nil, rate_limit: nil) ⇒ RoleUpdateResponse
constructor
A new instance of RoleUpdateResponse.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(meta: nil, role: nil, rate_limit: nil) ⇒ RoleUpdateResponse
Returns a new instance of RoleUpdateResponse.
5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 |
# File 'lib/models/porcelain.rb', line 5377 def initialize( meta: nil, role: nil, rate_limit: nil ) if != nil @meta = end if role != nil @role = role end if rate_limit != nil @rate_limit = rate_limit end end |
Instance Attribute Details
#meta ⇒ Object
Reserved for future use.
5371 5372 5373 |
# File 'lib/models/porcelain.rb', line 5371 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
5375 5376 5377 |
# File 'lib/models/porcelain.rb', line 5375 def rate_limit @rate_limit end |
#role ⇒ Object
The updated Role.
5373 5374 5375 |
# File 'lib/models/porcelain.rb', line 5373 def role @role end |
Instance Method Details
#to_json(options = {}) ⇒ Object
5393 5394 5395 5396 5397 5398 5399 |
# File 'lib/models/porcelain.rb', line 5393 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 |