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.



6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
# File 'lib/models/porcelain.rb', line 6110

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.



6104
6105
6106
# File 'lib/models/porcelain.rb', line 6104

def meta
  @meta
end

#rate_limitObject

Rate limit information.



6108
6109
6110
# File 'lib/models/porcelain.rb', line 6108

def rate_limit
  @rate_limit
end

#resourceObject

The created Resource.



6106
6107
6108
# File 'lib/models/porcelain.rb', line 6106

def resource
  @resource
end

Instance Method Details

#to_json(options = {}) ⇒ Object



6126
6127
6128
6129
6130
6131
6132
# File 'lib/models/porcelain.rb', line 6126

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