Class: SDM::AccountAttachmentCreateResponse
- Inherits:
-
Object
- Object
- SDM::AccountAttachmentCreateResponse
- Defined in:
- lib/models/porcelain.rb
Overview
AccountAttachmentCreateResponse reports how the AccountAttachments were created in the system.
Instance Attribute Summary collapse
-
#account_attachment ⇒ Object
The created AccountAttachment.
-
#meta ⇒ Object
Reserved for future use.
-
#rate_limit ⇒ Object
Rate limit information.
Instance Method Summary collapse
-
#initialize(meta: nil, account_attachment: nil, rate_limit: nil) ⇒ AccountAttachmentCreateResponse
constructor
A new instance of AccountAttachmentCreateResponse.
Constructor Details
#initialize(meta: nil, account_attachment: nil, rate_limit: nil) ⇒ AccountAttachmentCreateResponse
Returns a new instance of AccountAttachmentCreateResponse.
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 |
# File 'lib/models/porcelain.rb', line 100 def initialize( meta:nil \ , account_attachment:nil \ , rate_limit:nil \ ) if != nil @meta = end if != nil @account_attachment = end if rate_limit != nil @rate_limit = rate_limit end end |
Instance Attribute Details
#account_attachment ⇒ Object
The created AccountAttachment.
97 98 99 |
# File 'lib/models/porcelain.rb', line 97 def @account_attachment end |
#meta ⇒ Object
Reserved for future use.
95 96 97 |
# File 'lib/models/porcelain.rb', line 95 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
99 100 101 |
# File 'lib/models/porcelain.rb', line 99 def rate_limit @rate_limit end |