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.
Constructor Details
#initialize(meta: nil, account_grant: nil, rate_limit: nil) ⇒ AccountGrantCreateResponse
Returns a new instance of AccountGrantCreateResponse.
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 |
# File 'lib/models/porcelain.rb', line 197 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.
194 195 196 |
# File 'lib/models/porcelain.rb', line 194 def account_grant @account_grant end |
#meta ⇒ Object
Reserved for future use.
192 193 194 |
# File 'lib/models/porcelain.rb', line 192 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
196 197 198 |
# File 'lib/models/porcelain.rb', line 196 def rate_limit @rate_limit end |