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.
4791 4792 4793 4794 4795 4796 4797 |
# File 'lib/models/porcelain.rb', line 4791 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.
4787 4788 4789 |
# File 'lib/models/porcelain.rb', line 4787 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
4789 4790 4791 |
# File 'lib/models/porcelain.rb', line 4789 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
4799 4800 4801 4802 4803 4804 4805 |
# File 'lib/models/porcelain.rb', line 4799 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 |