// Copyright 2026 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

syntax = "proto3";

package google.ads.googleads.v21.enums;

option csharp_namespace = "Google.Ads.GoogleAds.V21.Enums";
option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v21/enums;enums";
option java_multiple_files = true;
option java_outer_classname = "LocalServicesLeadSurveyDissatisfiedReasonProto";
option java_package = "com.google.ads.googleads.v21.enums";
option objc_class_prefix = "GAA";
option php_namespace = "Google\\Ads\\GoogleAds\\V21\\Enums";
option ruby_package = "Google::Ads::GoogleAds::V21::Enums";

// Proto file describing the local services lead resource.

// Container for enum describing possible survey dissatisfied reasons for a
// lead.
message LocalServicesLeadSurveyDissatisfiedReasonEnum {
  // Provider's reason for not being satisfied with the lead.
  enum SurveyDissatisfiedReason {
    // Not specified.
    UNSPECIFIED = 0;

    // Used for return value only. Represents value unknown in this version.
    UNKNOWN = 1;

    // Other reasons.
    OTHER_DISSATISFIED_REASON = 2;

    // Lead was for a service that does not match the business' service area.
    GEO_MISMATCH = 3;

    // Lead was for a service that is not offered by the business.
    JOB_TYPE_MISMATCH = 4;

    // Lead was by a customer that was not ready to book.
    NOT_READY_TO_BOOK = 5;

    // Lead was a spam. Example: lead was from a bot, silent called, scam, etc.
    SPAM = 6;

    // Lead was a duplicate of another lead that is, customer contacted the
    // business more than once.
    DUPLICATE = 7;

    // Lead due to solicitation. Example: a person trying to get a job or
    // selling a product, etc.
    SOLICITATION = 8;
  }
}
