Class: SDM::ResourceCreateResponse

Inherits:
Object
  • Object
show all
Defined in:
lib/models/porcelain.rb

Overview

ResourceCreateResponse reports how the Resources were created in the system.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of ResourceCreateResponse.



4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
# File 'lib/models/porcelain.rb', line 4428

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.



4423
4424
4425
# File 'lib/models/porcelain.rb', line 4423

def meta
  @meta
end

#rate_limitObject

Rate limit information.



4427
4428
4429
# File 'lib/models/porcelain.rb', line 4427

def rate_limit
  @rate_limit
end

#resourceObject

The created Resource.



4425
4426
4427
# File 'lib/models/porcelain.rb', line 4425

def resource
  @resource
end

Instance Method Details

#to_json(options = {}) ⇒ Object



4445
4446
4447
4448
4449
4450
4451
# File 'lib/models/porcelain.rb', line 4445

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