Class: SDM::ResourceUpdateResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(meta: nil, resource: nil, rate_limit: nil) ⇒ ResourceUpdateResponse

Returns a new instance of ResourceUpdateResponse.



4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
# File 'lib/models/porcelain.rb', line 4495

def initialize(
  meta:nil \
,
  resource:nil \
,
  rate_limit:nil \
)
  if meta != nil
    @meta = meta
  end
  if resource != nil
    @resource = resource
  end
  if rate_limit != nil
    @rate_limit = rate_limit
  end
end

Instance Attribute Details

#metaObject

Reserved for future use.



4490
4491
4492
# File 'lib/models/porcelain.rb', line 4490

def meta
  @meta
end

#rate_limitObject

Rate limit information.



4494
4495
4496
# File 'lib/models/porcelain.rb', line 4494

def rate_limit
  @rate_limit
end

#resourceObject

The updated Resource.



4492
4493
4494
# File 'lib/models/porcelain.rb', line 4492

def resource
  @resource
end

Instance Method Details

#to_json(options = {}) ⇒ Object



4512
4513
4514
4515
4516
4517
4518
# File 'lib/models/porcelain.rb', line 4512

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