Class: SDM::GroupRoleDeleteResponse
- Inherits:
-
Object
- Object
- SDM::GroupRoleDeleteResponse
- Defined in:
- lib/models/porcelain.rb
Overview
GroupRoleDeleteResponse returns information about a group that was deleted.
Instance Attribute Summary collapse
-
#group_role ⇒ Object
The deleted GroupRole.
-
#meta ⇒ Object
Reserved for future use.
-
#rate_limit ⇒ Object
Rate limit information.
Instance Method Summary collapse
-
#initialize(group_role: nil, meta: nil, rate_limit: nil) ⇒ GroupRoleDeleteResponse
constructor
A new instance of GroupRoleDeleteResponse.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(group_role: nil, meta: nil, rate_limit: nil) ⇒ GroupRoleDeleteResponse
Returns a new instance of GroupRoleDeleteResponse.
8526 8527 8528 8529 8530 8531 8532 8533 8534 |
# File 'lib/models/porcelain.rb', line 8526 def initialize( group_role: nil, meta: nil, rate_limit: nil ) @group_role = group_role == nil ? nil : group_role @meta = == nil ? nil : @rate_limit = rate_limit == nil ? nil : rate_limit end |
Instance Attribute Details
#group_role ⇒ Object
The deleted GroupRole.
8520 8521 8522 |
# File 'lib/models/porcelain.rb', line 8520 def group_role @group_role end |
#meta ⇒ Object
Reserved for future use.
8522 8523 8524 |
# File 'lib/models/porcelain.rb', line 8522 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
8524 8525 8526 |
# File 'lib/models/porcelain.rb', line 8524 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
8536 8537 8538 8539 8540 8541 8542 |
# File 'lib/models/porcelain.rb', line 8536 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 |