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(account_attachment: nil, meta: nil, rate_limit: nil) ⇒ AccountAttachmentCreateResponse
constructor
A new instance of AccountAttachmentCreateResponse.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(account_attachment: nil, meta: nil, rate_limit: nil) ⇒ AccountAttachmentCreateResponse
Returns a new instance of AccountAttachmentCreateResponse.
1509 1510 1511 1512 1513 1514 1515 1516 1517 |
# File 'lib/models/porcelain.rb', line 1509 def initialize( account_attachment: nil, meta: nil, rate_limit: nil ) @account_attachment = == nil ? nil : @meta = == nil ? nil : @rate_limit = rate_limit == nil ? nil : rate_limit end |
Instance Attribute Details
#account_attachment ⇒ Object
The created AccountAttachment.
1503 1504 1505 |
# File 'lib/models/porcelain.rb', line 1503 def @account_attachment end |
#meta ⇒ Object
Reserved for future use.
1505 1506 1507 |
# File 'lib/models/porcelain.rb', line 1505 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
1507 1508 1509 |
# File 'lib/models/porcelain.rb', line 1507 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
1519 1520 1521 1522 1523 1524 1525 |
# File 'lib/models/porcelain.rb', line 1519 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 |