Class: SDM::PolicyGetResponse
- Inherits:
-
Object
- Object
- SDM::PolicyGetResponse
- Defined in:
- lib/models/porcelain.rb
Overview
PolicyGetResponse returns a requested Policy.
Instance Attribute Summary collapse
-
#meta ⇒ Object
Reserved for future use.
-
#policy ⇒ Object
The requested Policy.
-
#rate_limit ⇒ Object
Rate limit information.
Instance Method Summary collapse
-
#initialize(meta: nil, policy: nil, rate_limit: nil) ⇒ PolicyGetResponse
constructor
A new instance of PolicyGetResponse.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(meta: nil, policy: nil, rate_limit: nil) ⇒ PolicyGetResponse
Returns a new instance of PolicyGetResponse.
9237 9238 9239 9240 9241 9242 9243 9244 9245 |
# File 'lib/models/porcelain.rb', line 9237 def initialize( meta: nil, policy: nil, rate_limit: nil ) @meta = == nil ? nil : @policy = policy == nil ? nil : policy @rate_limit = rate_limit == nil ? nil : rate_limit end |
Instance Attribute Details
#meta ⇒ Object
Reserved for future use.
9231 9232 9233 |
# File 'lib/models/porcelain.rb', line 9231 def @meta end |
#policy ⇒ Object
The requested Policy.
9233 9234 9235 |
# File 'lib/models/porcelain.rb', line 9233 def policy @policy end |
#rate_limit ⇒ Object
Rate limit information.
9235 9236 9237 |
# File 'lib/models/porcelain.rb', line 9235 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
9247 9248 9249 9250 9251 9252 9253 |
# File 'lib/models/porcelain.rb', line 9247 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 |