Class: SDM::AccountCreateResponse

Inherits:
Object
  • Object
show all
Defined in:
lib/models/porcelain.rb

Overview

AccountCreateResponse reports how the Accounts were created in the system.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(account: nil, meta: nil, rate_limit: nil, token: nil) ⇒ AccountCreateResponse

Returns a new instance of AccountCreateResponse.



1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
# File 'lib/models/porcelain.rb', line 1094

def initialize(
  account: nil,
  meta: nil,
  rate_limit: nil,
  token: nil
)
  @account =  == nil ? nil : 
  @meta = meta == nil ? nil : meta
  @rate_limit = rate_limit == nil ? nil : rate_limit
  @token = token == nil ? "" : token
end

Instance Attribute Details

#accountObject

The created Account.



1085
1086
1087
# File 'lib/models/porcelain.rb', line 1085

def 
  @account
end

#metaObject

Reserved for future use.



1087
1088
1089
# File 'lib/models/porcelain.rb', line 1087

def meta
  @meta
end

#rate_limitObject

Rate limit information.



1089
1090
1091
# File 'lib/models/porcelain.rb', line 1089

def rate_limit
  @rate_limit
end

#tokenObject

The auth token generated for the Account. The Account will use this token to authenticate with the strongDM API.



1092
1093
1094
# File 'lib/models/porcelain.rb', line 1092

def token
  @token
end

Instance Method Details

#to_json(options = {}) ⇒ Object



1106
1107
1108
1109
1110
1111
1112
# File 'lib/models/porcelain.rb', line 1106

def to_json(options = {})
  hash = {}
  self.instance_variables.each do |var|
    hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
  end
  hash.to_json
end