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
12
# File 'lib/zm/client/tag/tag_jsns_initializer.rb', line 8

def create(parent, json)
  Tag.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/tag/tag_jsns_initializer.rb', line 14

def update(item, json)
  item.id = json.delete(:id)
  item.name = json.delete(:name)
  item.color = json.delete(:color)
  item.rgb = json.delete(:rgb)

  item
end