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.



6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
# File 'lib/models/porcelain.rb', line 6179

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.



6173
6174
6175
# File 'lib/models/porcelain.rb', line 6173

def meta
  @meta
end

#rate_limitObject

Rate limit information.



6177
6178
6179
# File 'lib/models/porcelain.rb', line 6177

def rate_limit
  @rate_limit
end

#resourceObject

The updated Resource.



6175
6176
6177
# File 'lib/models/porcelain.rb', line 6175

def resource
  @resource
end

Instance Method Details

#to_json(options = {}) ⇒ Object



6195
6196
6197
6198
6199
6200
6201
# File 'lib/models/porcelain.rb', line 6195

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