Method: PostImportOpenapiResponse400.from_dynamic!
- Defined in:
- lib/schemas.rb
.from_dynamic!(d) ⇒ Object
23607 23608 23609 23610 23611 23612 |
# File 'lib/schemas.rb', line 23607 def self.from_dynamic!(d) d = Types::Hash[d] new( error: d["error"] ? PostImportOpenapiResponse400Error.from_dynamic!(d["error"]) : nil, ) end |