File Coverage

blib/lib/Google/Ads/GoogleAds/V9/Enums/AdTypeEnum.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             # Copyright 2020, 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              
15              
16             use strict;
17 1     1   760 use warnings;
  1         2  
  1         28  
18 1     1   4  
  1         2  
  1         72  
19             use Const::Exporter enums => [
20 1         17 UNSPECIFIED => "UNSPECIFIED",
21             UNKNOWN => "UNKNOWN",
22             TEXT_AD => "TEXT_AD",
23             EXPANDED_TEXT_AD => "EXPANDED_TEXT_AD",
24             EXPANDED_DYNAMIC_SEARCH_AD => "EXPANDED_DYNAMIC_SEARCH_AD",
25             HOTEL_AD => "HOTEL_AD",
26             SHOPPING_SMART_AD => "SHOPPING_SMART_AD",
27             SHOPPING_PRODUCT_AD => "SHOPPING_PRODUCT_AD",
28             VIDEO_AD => "VIDEO_AD",
29             GMAIL_AD => "GMAIL_AD",
30             IMAGE_AD => "IMAGE_AD",
31             RESPONSIVE_SEARCH_AD => "RESPONSIVE_SEARCH_AD",
32             LEGACY_RESPONSIVE_DISPLAY_AD => "LEGACY_RESPONSIVE_DISPLAY_AD",
33             APP_AD => "APP_AD",
34             LEGACY_APP_INSTALL_AD => "LEGACY_APP_INSTALL_AD",
35             RESPONSIVE_DISPLAY_AD => "RESPONSIVE_DISPLAY_AD",
36             LOCAL_AD => "LOCAL_AD",
37             HTML5_UPLOAD_AD => "HTML5_UPLOAD_AD",
38             DYNAMIC_HTML5_AD => "DYNAMIC_HTML5_AD",
39             APP_ENGAGEMENT_AD => "APP_ENGAGEMENT_AD",
40             SHOPPING_COMPARISON_LISTING_AD => "SHOPPING_COMPARISON_LISTING_AD",
41             VIDEO_BUMPER_AD => "VIDEO_BUMPER_AD",
42             VIDEO_NON_SKIPPABLE_IN_STREAM_AD => "VIDEO_NON_SKIPPABLE_IN_STREAM_AD",
43             VIDEO_OUTSTREAM_AD => "VIDEO_OUTSTREAM_AD",
44             VIDEO_TRUEVIEW_DISCOVERY_AD => "VIDEO_TRUEVIEW_DISCOVERY_AD",
45             VIDEO_TRUEVIEW_IN_STREAM_AD => "VIDEO_TRUEVIEW_IN_STREAM_AD",
46             VIDEO_RESPONSIVE_AD => "VIDEO_RESPONSIVE_AD",
47             SMART_CAMPAIGN_AD => "SMART_CAMPAIGN_AD",
48             CALL_AD => "CALL_AD",
49             APP_PRE_REGISTRATION_AD => "APP_PRE_REGISTRATION_AD"
50             ];
51 1     1   5  
  1         7  
52             1;