Class: SDM::AccountGrantGetResponse
- Inherits:
-
Object
- Object
- SDM::AccountGrantGetResponse
- Defined in:
- lib/models/porcelain.rb
Overview
AccountGrantGetResponse returns a requested AccountGrant.
Instance Attribute Summary collapse
-
#account_grant ⇒ Object
The requested AccountGrant.
-
#meta ⇒ Object
Reserved for future use.
-
#rate_limit ⇒ Object
Rate limit information.
Instance Method Summary collapse
-
#initialize(account_grant: nil, meta: nil, rate_limit: nil) ⇒ AccountGrantGetResponse
constructor
A new instance of AccountGrantGetResponse.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(account_grant: nil, meta: nil, rate_limit: nil) ⇒ AccountGrantGetResponse
Returns a new instance of AccountGrantGetResponse.
1265 1266 1267 1268 1269 1270 1271 1272 1273 |
# File 'lib/models/porcelain.rb', line 1265 def initialize( account_grant: nil, meta: nil, rate_limit: nil ) @account_grant = account_grant == nil ? nil : account_grant @meta = == nil ? nil : @rate_limit = rate_limit == nil ? nil : rate_limit end |
Instance Attribute Details
#account_grant ⇒ Object
The requested AccountGrant.
1259 1260 1261 |
# File 'lib/models/porcelain.rb', line 1259 def account_grant @account_grant end |
#meta ⇒ Object
Reserved for future use.
1261 1262 1263 |
# File 'lib/models/porcelain.rb', line 1261 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
1263 1264 1265 |
# File 'lib/models/porcelain.rb', line 1263 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
1275 1276 1277 1278 1279 1280 1281 |
# File 'lib/models/porcelain.rb', line 1275 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 |