Class: SDM::AccountDeleteResponse
- Inherits:
-
Object
- Object
- SDM::AccountDeleteResponse
- Defined in:
- lib/models/porcelain.rb
Overview
AccountDeleteResponse returns information about a Account 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) ⇒ AccountDeleteResponse
constructor
A new instance of AccountDeleteResponse.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(meta: nil, rate_limit: nil) ⇒ AccountDeleteResponse
Returns a new instance of AccountDeleteResponse.
1148 1149 1150 1151 1152 1153 1154 |
# File 'lib/models/porcelain.rb', line 1148 def initialize( meta: nil, rate_limit: nil ) @meta = == nil ? nil : @rate_limit = rate_limit == nil ? nil : rate_limit end |
Instance Attribute Details
#meta ⇒ Object
Reserved for future use.
1144 1145 1146 |
# File 'lib/models/porcelain.rb', line 1144 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
1146 1147 1148 |
# File 'lib/models/porcelain.rb', line 1146 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
1156 1157 1158 1159 1160 1161 1162 |
# File 'lib/models/porcelain.rb', line 1156 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 |