lib/open_api_sdk/models/operations/mode.rb



# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.

# typed: true
# frozen_string_literal: true


module OpenApiSDK
  module Operations
  
    # Mode - The mode to use for tracking the lead event. `async` will not block the request; `wait` will block the request until the lead event is fully recorded in Dub.
    class Mode < T::Enum
      enums do
        ASYNC = new('async')
        WAIT = new('wait')
      end
    end
  end
end