Class: SDM::ResourceUpdateResponse
- Inherits:
-
Object
- Object
- SDM::ResourceUpdateResponse
- Defined in:
- lib/models/porcelain.rb
Overview
ResourceUpdateResponse returns the fields of a Resource after it has been updated by a ResourceUpdateRequest.
Instance Attribute Summary collapse
-
#meta ⇒ Object
Reserved for future use.
-
#rate_limit ⇒ Object
Rate limit information.
-
#resource ⇒ Object
The updated Resource.
Instance Method Summary collapse
-
#initialize(meta: nil, rate_limit: nil, resource: nil) ⇒ ResourceUpdateResponse
constructor
A new instance of ResourceUpdateResponse.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(meta: nil, rate_limit: nil, resource: nil) ⇒ ResourceUpdateResponse
Returns a new instance of ResourceUpdateResponse.
8395 8396 8397 8398 8399 8400 8401 8402 8403 |
# File 'lib/models/porcelain.rb', line 8395 def initialize( meta: nil, rate_limit: nil, resource: nil ) @meta = == nil ? nil : @rate_limit = rate_limit == nil ? nil : rate_limit @resource = resource == nil ? nil : resource end |
Instance Attribute Details
#meta ⇒ Object
Reserved for future use.
8389 8390 8391 |
# File 'lib/models/porcelain.rb', line 8389 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
8391 8392 8393 |
# File 'lib/models/porcelain.rb', line 8391 def rate_limit @rate_limit end |
#resource ⇒ Object
The updated Resource.
8393 8394 8395 |
# File 'lib/models/porcelain.rb', line 8393 def resource @resource end |
Instance Method Details
#to_json(options = {}) ⇒ Object
8405 8406 8407 8408 8409 8410 8411 |
# File 'lib/models/porcelain.rb', line 8405 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 |