Method: GitInfo.from_dynamic!

Defined in:
lib/schemas.rb

.from_dynamic!(d) ⇒ Object



36383
36384
36385
36386
36387
36388
36389
36390
36391
36392
# File 'lib/schemas.rb', line 36383

def self.from_dynamic!(d)
  d = Types::Hash[d]
  new(
    collection_folder: d["collectionFolder"],
    domain:            d["domain"],
    organization:      d["organization"],
    repository:        d["repository"],
    schema_folder:     d["schemaFolder"],
  )
end