Class: DeleteCollectionsCollectionIDFoldersFolderIDResponse404ErrorDetails

Inherits:
Dry::Struct
  • Object
show all
Defined in:
lib/schemas.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.from_dynamic!(d) ⇒ Object



874
875
876
877
878
879
880
881
# File 'lib/schemas.rb', line 874

def self.from_dynamic!(d)
  d = Types::Hash[d]
  new(
    model:    d["model"],
    model_id: d["model_id"],
    owner:    d["owner"],
  )
end

.from_json!(json) ⇒ Object



883
884
885
# File 'lib/schemas.rb', line 883

def self.from_json!(json)
  from_dynamic!(JSON.parse(json))
end

Instance Method Details

#to_dynamicObject



887
888
889
890
891
892
893
# File 'lib/schemas.rb', line 887

def to_dynamic
  {
    "model"    => model,
    "model_id" => model_id,
    "owner"    => owner,
  }
end

#to_json(options = nil) ⇒ Object



895
896
897
# File 'lib/schemas.rb', line 895

def to_json(options = nil)
  JSON.generate(to_dynamic, options)
end