Class: SDM::AccountAttachmentGetResponse
- Inherits:
-
Object
- Object
- SDM::AccountAttachmentGetResponse
- Defined in:
- lib/models/porcelain.rb
Overview
AccountAttachmentGetResponse returns a requested AccountAttachment.
Instance Attribute Summary collapse
-
#account_attachment ⇒ Object
The requested 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) ⇒ AccountAttachmentGetResponse
constructor
A new instance of AccountAttachmentGetResponse.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(account_attachment: nil, meta: nil, rate_limit: nil) ⇒ AccountAttachmentGetResponse
Returns a new instance of AccountAttachmentGetResponse.
1061 1062 1063 1064 1065 1066 1067 1068 1069 |
# File 'lib/models/porcelain.rb', line 1061 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 requested AccountAttachment.
1055 1056 1057 |
# File 'lib/models/porcelain.rb', line 1055 def @account_attachment end |
#meta ⇒ Object
Reserved for future use.
1057 1058 1059 |
# File 'lib/models/porcelain.rb', line 1057 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
1059 1060 1061 |
# File 'lib/models/porcelain.rb', line 1059 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
1071 1072 1073 1074 1075 1076 1077 |
# File 'lib/models/porcelain.rb', line 1071 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 |