Class: Rafflesia::DatasetManifestInspectRequest

Inherits:
Types::BaseModel
  • Object
show all
Defined in:
lib/rafflesia/datasets/dataset_manifest_inspect_request.rb

Constant Summary collapse

HASH_ATTRS =
{
  manifest_path: :manifest_path
}.freeze

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(json) ⇒ DatasetManifestInspectRequest

Returns a new instance of DatasetManifestInspectRequest.



14
15
16
17
18
# File 'lib/rafflesia/datasets/dataset_manifest_inspect_request.rb', line 14

def initialize(json)
  super()
  hash = self.class.normalize(json)
  @manifest_path = hash[:manifest_path]
end

Instance Attribute Details

#manifest_pathObject

Returns the value of attribute manifest_path.



12
13
14
# File 'lib/rafflesia/datasets/dataset_manifest_inspect_request.rb', line 12

def manifest_path
  @manifest_path
end