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.
8728 8729 8730 8731 8732 8733 8734 8735 8736 |
# File 'lib/models/porcelain.rb', line 8728 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.
8722 8723 8724 |
# File 'lib/models/porcelain.rb', line 8722 def group_role @group_role end |
#meta ⇒ Object
Reserved for future use.
8724 8725 8726 |
# File 'lib/models/porcelain.rb', line 8724 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
8726 8727 8728 |
# File 'lib/models/porcelain.rb', line 8726 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
8738 8739 8740 8741 8742 8743 8744 |
# File 'lib/models/porcelain.rb', line 8738 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 |