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.
10672 10673 10674 10675 10676 10677 10678 10679 10680 |
# File 'lib/models/porcelain.rb', line 10672 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.
10666 10667 10668 |
# File 'lib/models/porcelain.rb', line 10666 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
10668 10669 10670 |
# File 'lib/models/porcelain.rb', line 10668 def rate_limit @rate_limit end |
#resource ⇒ Object
The updated Resource.
10670 10671 10672 |
# File 'lib/models/porcelain.rb', line 10670 def resource @resource end |
Instance Method Details
#to_json(options = {}) ⇒ Object
10682 10683 10684 10685 10686 10687 10688 |
# File 'lib/models/porcelain.rb', line 10682 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 |