Method: Appwrite::Models::AttributeIp.from
- Defined in:
- lib/appwrite/models/attribute_ip.rb
.from(map:) ⇒ Object
35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/appwrite/models/attribute_ip.rb', line 35 def self.from(map:) AttributeIp.new( key: map["key"], type: map["type"], status: map["status"], error: map["error"], required: map["required"], array: map["array"], format: map["format"], default: map["default"] ) end |