1// Copyright 2023 Google LLC 2// 3// Licensed under the Apache License, Version 2.0 (the "License"); 4// you may not use this file except in compliance with the License. 5// You may obtain a copy of the License at 6// 7// http://www.apache.org/licenses/LICENSE-2.0 8// 9// Unless required by applicable law or agreed to in writing, software 10// distributed under the License is distributed on an "AS IS" BASIS, 11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12// See the License for the specific language governing permissions and 13// limitations under the License. 14 15syntax = "proto3"; 16 17package google.ads.googleads.v16.enums; 18 19option csharp_namespace = "Google.Ads.GoogleAds.V16.Enums"; 20option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v16/enums;enums"; 21option java_multiple_files = true; 22option java_outer_classname = "PolicyApprovalStatusProto"; 23option java_package = "com.google.ads.googleads.v16.enums"; 24option objc_class_prefix = "GAA"; 25option php_namespace = "Google\\Ads\\GoogleAds\\V16\\Enums"; 26option ruby_package = "Google::Ads::GoogleAds::V16::Enums"; 27 28// Proto file describing policy approval statuses. 29 30// Container for enum describing possible policy approval statuses. 31message PolicyApprovalStatusEnum { 32 // The possible policy approval statuses. When there are several approval 33 // statuses available the most severe one will be used. The order of severity 34 // is DISAPPROVED, AREA_OF_INTEREST_ONLY, APPROVED_LIMITED and APPROVED. 35 enum PolicyApprovalStatus { 36 // No value has been specified. 37 UNSPECIFIED = 0; 38 39 // The received value is not known in this version. 40 // 41 // This is a response-only value. 42 UNKNOWN = 1; 43 44 // Will not serve. 45 DISAPPROVED = 2; 46 47 // Serves with restrictions. 48 APPROVED_LIMITED = 3; 49 50 // Serves without restrictions. 51 APPROVED = 4; 52 53 // Will not serve in targeted countries, but may serve for users who are 54 // searching for information about the targeted countries. 55 AREA_OF_INTEREST_ONLY = 5; 56 } 57} 58