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, rate_limit: nil, role: nil) ⇒ RoleUpdateResponse
constructor
A new instance of RoleUpdateResponse.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(meta: nil, rate_limit: nil, role: nil) ⇒ RoleUpdateResponse
Returns a new instance of RoleUpdateResponse.
6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 |
# File 'lib/models/porcelain.rb', line 6581 def initialize( meta: nil, rate_limit: nil, role: nil ) if != nil @meta = end if rate_limit != nil @rate_limit = rate_limit end if role != nil @role = role end end |
Instance Attribute Details
#meta ⇒ Object
Reserved for future use.
6575 6576 6577 |
# File 'lib/models/porcelain.rb', line 6575 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
6577 6578 6579 |
# File 'lib/models/porcelain.rb', line 6577 def rate_limit @rate_limit end |
#role ⇒ Object
The updated Role.
6579 6580 6581 |
# File 'lib/models/porcelain.rb', line 6579 def role @role end |
Instance Method Details
#to_json(options = {}) ⇒ Object
6597 6598 6599 6600 6601 6602 6603 |
# File 'lib/models/porcelain.rb', line 6597 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 |