Class: Zm::Client::AceJsnsInitializer
- Inherits:
-
Object
- Object
- Zm::Client::AceJsnsInitializer
- Defined in:
- lib/zm/client/ace/ace_jsns_initializer.rb
Overview
class for initialize account ace
Class Method Summary collapse
Class Method Details
.create(parent, json) ⇒ Object
8 9 10 11 12 |
# File 'lib/zm/client/ace/ace_jsns_initializer.rb', line 8 def create(parent, json) Ace.new(parent).tap do |item| update(item, json) end end |
.update(item, json) ⇒ Object
14 15 16 17 18 19 20 21 |
# File 'lib/zm/client/ace/ace_jsns_initializer.rb', line 14 def update(item, json) item.zid = json.delete(:zid) item.gt = json.delete(:gt) item.right = json.delete(:right) item.d = json.delete(:d) item end |