class InContact::Responses::CallListResponse

Public Instance Methods

call_list() click to toggle source
# File lib/incontact/responses/call_list_response.rb, line 4
def call_list
  @call_lists ||= self["callingLists"].map do |call_list|
    InContact::Models::CallList.new(call_list)
  end
end