Class: Zm::Client::TagJsnsInitializer

Inherits:
Object
  • Object
show all
Defined in:
lib/zm/client/tag/tag_jsns_initializer.rb

Overview

class for initialize account tag

Class Method Summary collapse

Class Method Details

.create(parent, json) ⇒ Object



8
9
10
11
# File 'lib/zm/client/tag/tag_jsns_initializer.rb', line 8

def create(parent, json)
  item = Tag.new(parent)
  update(item, json)
end

.update(item, json) ⇒ Object



13
14
15
16
17
18
19
20
# File 'lib/zm/client/tag/tag_jsns_initializer.rb', line 13

def update(item, json)
  item.id = json[:id].to_i
  item.name = json[:name]
  item.color = json[:color].to_i
  item.rgb = json[:rgb]

  item
end