// 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.v24.enums;

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

// Proto file describing partnership opportunity .

// Container for enum describing partnership opportunity.
message PartnershipOpportunityEnum {
  // Partnership opportunity between media buyers and creators for paid media on
  // YouTube.
  enum PartnershipOpportunity {
    // Default value. This value is equivalent to null.
    UNSPECIFIED = 0;

    // Output-only. Represents a format not yet defined in this enum.
    UNKNOWN = 1;

    // A partnership opportunity that allows advertisers to partner with YouTube
    // creators on sponsored content that mentions a brand or product. See
    // https://support.google.com/google-ads/answer/15471603 to learn more.
    CREATOR_PARTNERSHIPS = 2;

    // A partnership opportunity that gives brands exclusive access to all ad
    // slots on channels of top creators.
    CREATOR_TAKEOVER = 3;

    // A partnership opportunity that enables brands to use YouTube creator
    // videos in their ad campaigns. See
    // https://support.google.com/google-ads/answer/15223349 to learn more.
    PARTNERSHIP_ADS = 4;

    // A partnership opportunity that allows advertisers to buy specific ad
    // placements on a reservation basis to target among the top 1% of popular
    // channels on YouTube. See
    // https://support.google.com/google-ads/answer/6030919 to learn more.
    YOUTUBE_SELECT_LINEUPS = 5;
  }
}
