Method: SDM::AccountCreateResponse#initialize
- Defined in:
- lib/models/porcelain.rb
#initialize(access_key: nil, account: nil, meta: nil, rate_limit: nil, secret_key: nil, token: nil) ⇒ AccountCreateResponse
Returns a new instance of AccountCreateResponse.
1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 |
# File 'lib/models/porcelain.rb', line 1243 def initialize( access_key: nil, account: nil, meta: nil, rate_limit: nil, secret_key: nil, token: nil ) @access_key = access_key == nil ? "" : access_key @account = account == nil ? nil : account @meta = == nil ? nil : @rate_limit = rate_limit == nil ? nil : rate_limit @secret_key = secret_key == nil ? "" : secret_key @token = token == nil ? "" : token end |