# File lib/braintree/add_on_gateway.rb, line 8
    def all
      response = @config.http.get "/add_ons"
      attributes_collection = response[:add_ons]
      attributes_collection.map do |attributes|
        AddOn._new(attributes)
      end
    end