Class: SDM::AccountCreateResponse
- Inherits:
-
Object
- Object
- SDM::AccountCreateResponse
- Defined in:
- lib/models/porcelain.rb
Overview
AccountCreateResponse reports how the Accounts were created in the system.
Instance Attribute Summary collapse
-
#account ⇒ Object
The created Account.
-
#meta ⇒ Object
Reserved for future use.
-
#rate_limit ⇒ Object
Rate limit information.
-
#token ⇒ Object
The auth token generated for the Account.
Instance Method Summary collapse
-
#initialize(account: nil, meta: nil, rate_limit: nil, token: nil) ⇒ AccountCreateResponse
constructor
A new instance of AccountCreateResponse.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(account: nil, meta: nil, rate_limit: nil, token: nil) ⇒ AccountCreateResponse
Returns a new instance of AccountCreateResponse.
1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 |
# File 'lib/models/porcelain.rb', line 1095 def initialize( account: nil, meta: nil, rate_limit: nil, token: nil ) @account = account == nil ? nil : account @meta = == nil ? nil : @rate_limit = rate_limit == nil ? nil : rate_limit @token = token == nil ? "" : token end |
Instance Attribute Details
#account ⇒ Object
The created Account.
1086 1087 1088 |
# File 'lib/models/porcelain.rb', line 1086 def account @account end |
#meta ⇒ Object
Reserved for future use.
1088 1089 1090 |
# File 'lib/models/porcelain.rb', line 1088 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
1090 1091 1092 |
# File 'lib/models/porcelain.rb', line 1090 def rate_limit @rate_limit end |
#token ⇒ Object
The auth token generated for the Account. The Account will use this token to authenticate with the strongDM API.
1093 1094 1095 |
# File 'lib/models/porcelain.rb', line 1093 def token @token end |
Instance Method Details
#to_json(options = {}) ⇒ Object
1107 1108 1109 1110 1111 1112 1113 |
# File 'lib/models/porcelain.rb', line 1107 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 |