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.
7547 7548 7549 7550 7551 7552 7553 7554 7555 |
# File 'lib/models/porcelain.rb', line 7547 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.
7541 7542 7543 |
# File 'lib/models/porcelain.rb', line 7541 def group_role @group_role end |
#meta ⇒ Object
Reserved for future use.
7543 7544 7545 |
# File 'lib/models/porcelain.rb', line 7543 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
7545 7546 7547 |
# File 'lib/models/porcelain.rb', line 7545 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
7557 7558 7559 7560 7561 7562 7563 |
# File 'lib/models/porcelain.rb', line 7557 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 |