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.v14.enums; 18 19option csharp_namespace = "Google.Ads.GoogleAds.V14.Enums"; 20option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v14/enums;enums"; 21option java_multiple_files = true; 22option java_outer_classname = "AssetLinkPrimaryStatusProto"; 23option java_package = "com.google.ads.googleads.v14.enums"; 24option objc_class_prefix = "GAA"; 25option php_namespace = "Google\\Ads\\GoogleAds\\V14\\Enums"; 26option ruby_package = "Google::Ads::GoogleAds::V14::Enums"; 27 28// Proto file describing asset source. 29 30// Provides the primary status of an asset link. 31// For example: a sitelink may be paused for a particular campaign. 32message AssetLinkPrimaryStatusEnum { 33 // Enum Provides insight into why an asset is not serving or not serving 34 // at full capacity for a particular link level. There could be one status 35 // with multiple reasons. For example, a sitelink might be paused by the user, 36 // but also limited in serving due to violation of an alcohol policy. In 37 // this case, the PrimaryStatus will be returned as PAUSED, since the asset's 38 // effective status is determined by its paused state. 39 enum AssetLinkPrimaryStatus { 40 // Not specified. 41 UNSPECIFIED = 0; 42 43 // Used for return value only. Represents value unknown in this version. 44 UNKNOWN = 1; 45 46 // The asset is eligible to serve. 47 ELIGIBLE = 2; 48 49 // The user-specified asset link status is paused. 50 PAUSED = 3; 51 52 // The user-specified asset link status is removed. 53 REMOVED = 4; 54 55 // The asset may serve in the future. 56 PENDING = 5; 57 58 // The asset is serving in a partial capacity. 59 LIMITED = 6; 60 61 // The asset is not eligible to serve. 62 NOT_ELIGIBLE = 7; 63 } 64} 65