Class: SDM::AccountGrantCreateResponse
- Inherits:
-
Object
- Object
- SDM::AccountGrantCreateResponse
- Defined in:
- lib/models/porcelain.rb
Overview
AccountGrantCreateResponse reports how the AccountGrants were created in the system.
Instance Attribute Summary collapse
-
#account_grant ⇒ Object
The created AccountGrant.
-
#meta ⇒ Object
Reserved for future use.
-
#rate_limit ⇒ Object
Rate limit information.
Instance Method Summary collapse
-
#initialize(meta: nil, account_grant: nil, rate_limit: nil) ⇒ AccountGrantCreateResponse
constructor
A new instance of AccountGrantCreateResponse.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(meta: nil, account_grant: nil, rate_limit: nil) ⇒ AccountGrantCreateResponse
Returns a new instance of AccountGrantCreateResponse.
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 |
# File 'lib/models/porcelain.rb', line 280 def initialize( meta: nil, account_grant: nil, rate_limit: nil ) if != nil @meta = end if account_grant != nil @account_grant = account_grant end if rate_limit != nil @rate_limit = rate_limit end end |
Instance Attribute Details
#account_grant ⇒ Object
The created AccountGrant.
276 277 278 |
# File 'lib/models/porcelain.rb', line 276 def account_grant @account_grant end |
#meta ⇒ Object
Reserved for future use.
274 275 276 |
# File 'lib/models/porcelain.rb', line 274 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
278 279 280 |
# File 'lib/models/porcelain.rb', line 278 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
296 297 298 299 300 301 302 |
# File 'lib/models/porcelain.rb', line 296 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 |