// 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.common;

import "google/ads/googleads/v24/enums/synthetic_content_attestation_status.proto";
import "google/ads/googleads/v24/enums/synthetic_content_source.proto";
import "google/api/field_behavior.proto";

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

// Represents an attestation about synthetic content from a single source.
message SyntheticContentAttestation {
  // Indicates whether the content is considered synthetic by this source.
  google.ads.googleads.v24.enums.SyntheticContentAttestationStatusEnum
      .SyntheticContentAttestationStatus status = 1;

  // The source of the synthetic content attestation.
  google.ads.googleads.v24.enums.SyntheticContentSourceEnum
      .SyntheticContentSource source = 2;
}

// Container for synthetic content attestations from different sources, such as
// the advertiser and Google systems.
message SyntheticContentInfo {
  // Input provided by the advertiser.
  SyntheticContentAttestation advertiser_attestation = 1;

  // Output only. Information about synthetic content generated by Google's
  // systems.
  SyntheticContentAttestation system_attestation = 2
      [(google.api.field_behavior) = OUTPUT_ONLY];
}
