class Vonage::Applications::ListResponse

typed: true

Public Instance Methods

each() { |item| ... } click to toggle source
# File lib/vonage/applications/list_response.rb, line 6
def each
  return enum_for(:each) unless block_given?

  @entity._embedded.applications.each { |item| yield item }
end