Class: SDM::RoleAttachmentDeleteResponse
- Inherits:
-
Object
- Object
- SDM::RoleAttachmentDeleteResponse
- Defined in:
- lib/models/porcelain.rb
Overview
RoleAttachmentDeleteResponse returns information about a RoleAttachment that was deleted.
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.
Constructor Details
#initialize(meta: nil, rate_limit: nil) ⇒ RoleAttachmentDeleteResponse
Returns a new instance of RoleAttachmentDeleteResponse.
3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 |
# File 'lib/models/porcelain.rb', line 3771 def initialize( meta:nil \ , rate_limit:nil \ ) if != nil @meta = end if rate_limit != nil @rate_limit = rate_limit end end |
Instance Attribute Details
#meta ⇒ Object
Reserved for future use.
3768 3769 3770 |
# File 'lib/models/porcelain.rb', line 3768 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
3770 3771 3772 |
# File 'lib/models/porcelain.rb', line 3770 def rate_limit @rate_limit end |