Class: SDM::RoleAttachmentDeleteResponse
- Inherits:
-
Object
- Object
- SDM::RoleAttachmentDeleteResponse
- Defined in:
- lib/models/porcelain.rb
Overview
RoleAttachmentDeleteResponse returns information about a RoleAttachment that was deleted.
Deprecated: use multi-role via AccountAttachments instead.
Instance Attribute Summary collapse
-
#meta ⇒ Object
Reserved for future use.
-
#rate_limit ⇒ Object
Rate limit information.
Instance Method Summary collapse
-
#initialize(meta: nil, rate_limit: nil) ⇒ RoleAttachmentDeleteResponse
constructor
A new instance of RoleAttachmentDeleteResponse.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(meta: nil, rate_limit: nil) ⇒ RoleAttachmentDeleteResponse
Returns a new instance of RoleAttachmentDeleteResponse.
5143 5144 5145 5146 5147 5148 5149 |
# File 'lib/models/porcelain.rb', line 5143 def initialize( meta: nil, rate_limit: nil ) @meta = == nil ? nil : @rate_limit = rate_limit == nil ? nil : rate_limit end |
Instance Attribute Details
#meta ⇒ Object
Reserved for future use.
5139 5140 5141 |
# File 'lib/models/porcelain.rb', line 5139 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
5141 5142 5143 |
# File 'lib/models/porcelain.rb', line 5141 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
5151 5152 5153 5154 5155 5156 5157 |
# File 'lib/models/porcelain.rb', line 5151 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 |