# File lib/braintree/credit_card_verification_gateway.rb, line 24
    def _fetch_verifications(search, ids)
      search.ids.in ids
      response = @config.http.post "/verifications/advanced_search", {:search => search.to_hash}
      attributes = response[:credit_card_verifications]
      Util.extract_attribute_as_array(attributes, :verification).map { |attrs| CreditCardVerification._new(attrs) }
    end