Class: SDM::AccountAttachmentDeleteResponse
- Inherits:
-
Object
- Object
- SDM::AccountAttachmentDeleteResponse
- Defined in:
- lib/models/porcelain.rb
Overview
AccountAttachmentDeleteResponse returns information about a AccountAttachment 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) ⇒ AccountAttachmentDeleteResponse
constructor
A new instance of AccountAttachmentDeleteResponse.
Constructor Details
#initialize(meta: nil, rate_limit: nil) ⇒ AccountAttachmentDeleteResponse
Returns a new instance of AccountAttachmentDeleteResponse.
150 151 152 153 154 155 156 157 158 159 160 161 |
# File 'lib/models/porcelain.rb', line 150 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.
147 148 149 |
# File 'lib/models/porcelain.rb', line 147 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
149 150 151 |
# File 'lib/models/porcelain.rb', line 149 def rate_limit @rate_limit end |