Class: SDM::AccountGrantGetResponse
- Inherits:
-
Object
- Object
- SDM::AccountGrantGetResponse
- Defined in:
- lib/models/porcelain.rb
Overview
AccountGrantGetResponse returns a requested AccountGrant.
Instance Attribute Summary collapse
-
#account_grant ⇒ Object
The requested AccountGrant.
-
#meta ⇒ Object
Reserved for future use.
-
#rate_limit ⇒ Object
Rate limit information.
Instance Method Summary collapse
-
#initialize(account_grant: nil, meta: nil, rate_limit: nil) ⇒ AccountGrantGetResponse
constructor
A new instance of AccountGrantGetResponse.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(account_grant: nil, meta: nil, rate_limit: nil) ⇒ AccountGrantGetResponse
Returns a new instance of AccountGrantGetResponse.
1184 1185 1186 1187 1188 1189 1190 1191 1192 |
# File 'lib/models/porcelain.rb', line 1184 def initialize( account_grant: nil, meta: nil, rate_limit: nil ) @account_grant = account_grant == nil ? nil : account_grant = == nil ? nil : @rate_limit = rate_limit == nil ? nil : rate_limit end |
Instance Attribute Details
#account_grant ⇒ Object
The requested AccountGrant.
1178 1179 1180 |
# File 'lib/models/porcelain.rb', line 1178 def account_grant @account_grant end |
#meta ⇒ Object
Reserved for future use.
1180 1181 1182 |
# File 'lib/models/porcelain.rb', line 1180 def end |
#rate_limit ⇒ Object
Rate limit information.
1182 1183 1184 |
# File 'lib/models/porcelain.rb', line 1182 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
1194 1195 1196 1197 1198 1199 1200 |
# File 'lib/models/porcelain.rb', line 1194 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 |