require 'amsi/validator' require_relative 'base' module Amsi module Validator class ProspectEventValidator < Base def initialize(response = nil); end def validate!; end # Send parased response's individual prospect data to Snowflake via event tracker def send_event(lease, params) send_pms_prospect_event(lease: lease, params: params || {}) end end end end