CardTapp/yext-api

View on GitHub
lib/yext/api/enumerations/optimization_link_mode.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Yext
  module Api
    module Enumerations
      # The possible modes to search for when looking up Optimization Links
      class OptimizationLinkMode
        include Yext::Api::Concerns::EnumAll

        PENDING_ONLY = "PENDING_ONLY"
        ALL_TASKS    = "ALL_TASKS"
        RESET        = "RESET"
      end
    end
  end
end