Class: Zm::Client::ContactBuilder
- Inherits:
-
Base::ObjectsBuilder
- Object
- Base::ObjectsBuilder
- Zm::Client::ContactBuilder
- Defined in:
- lib/zm/client/contact/contacts_builder.rb
Overview
class factory [contacts]
Instance Method Summary collapse
-
#initialize(parent, json) ⇒ ContactBuilder
constructor
A new instance of ContactBuilder.
- #make ⇒ Object
Methods inherited from Base::ObjectsBuilder
Constructor Details
#initialize(parent, json) ⇒ ContactBuilder
Returns a new instance of ContactBuilder.
7 8 9 10 |
# File 'lib/zm/client/contact/contacts_builder.rb', line 7 def initialize(parent, json) super(parent, json) @json_item_key = :cn end |
Instance Method Details
#make ⇒ Object
12 13 14 15 16 17 18 |
# File 'lib/zm/client/contact/contacts_builder.rb', line 12 def make return [] if json_items.nil? json_items.map do |entry| ContactJsnsInitializer.create(@parent, entry) end end |