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.
8666 8667 8668 8669 8670 8671 8672 8673 8674 |
# File 'lib/models/porcelain.rb', line 8666 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.
8660 8661 8662 |
# File 'lib/models/porcelain.rb', line 8660 def group_role @group_role end |
#meta ⇒ Object
Reserved for future use.
8662 8663 8664 |
# File 'lib/models/porcelain.rb', line 8662 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
8664 8665 8666 |
# File 'lib/models/porcelain.rb', line 8664 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
8676 8677 8678 8679 8680 8681 8682 |
# File 'lib/models/porcelain.rb', line 8676 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 |