CardTapp/yext-api

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

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Yext
  module Api
    module Enumerations
      # The type of the location in an AddRequest
      class AddRequestLocationMode
        include Yext::Api::Concerns::EnumAll

        EXISTING = "EXISTING"
        NEW      = "NEW"
      end
    end
  end
end