File Coverage

blib/lib/Google/Ads/GoogleAds/V11/Enums/ConversionLagBucketEnum.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         37  
18 1     1   6  
  1         2  
  1         72  
19             use Const::Exporter enums => [
20 1         13 UNSPECIFIED => "UNSPECIFIED",
21             UNKNOWN => "UNKNOWN",
22             LESS_THAN_ONE_DAY => "LESS_THAN_ONE_DAY",
23             ONE_TO_TWO_DAYS => "ONE_TO_TWO_DAYS",
24             TWO_TO_THREE_DAYS => "TWO_TO_THREE_DAYS",
25             THREE_TO_FOUR_DAYS => "THREE_TO_FOUR_DAYS",
26             FOUR_TO_FIVE_DAYS => "FOUR_TO_FIVE_DAYS",
27             FIVE_TO_SIX_DAYS => "FIVE_TO_SIX_DAYS",
28             SIX_TO_SEVEN_DAYS => "SIX_TO_SEVEN_DAYS",
29             SEVEN_TO_EIGHT_DAYS => "SEVEN_TO_EIGHT_DAYS",
30             EIGHT_TO_NINE_DAYS => "EIGHT_TO_NINE_DAYS",
31             NINE_TO_TEN_DAYS => "NINE_TO_TEN_DAYS",
32             TEN_TO_ELEVEN_DAYS => "TEN_TO_ELEVEN_DAYS",
33             ELEVEN_TO_TWELVE_DAYS => "ELEVEN_TO_TWELVE_DAYS",
34             TWELVE_TO_THIRTEEN_DAYS => "TWELVE_TO_THIRTEEN_DAYS",
35             THIRTEEN_TO_FOURTEEN_DAYS => "THIRTEEN_TO_FOURTEEN_DAYS",
36             FOURTEEN_TO_TWENTY_ONE_DAYS => "FOURTEEN_TO_TWENTY_ONE_DAYS",
37             TWENTY_ONE_TO_THIRTY_DAYS => "TWENTY_ONE_TO_THIRTY_DAYS",
38             THIRTY_TO_FORTY_FIVE_DAYS => "THIRTY_TO_FORTY_FIVE_DAYS",
39             FORTY_FIVE_TO_SIXTY_DAYS => "FORTY_FIVE_TO_SIXTY_DAYS",
40             SIXTY_TO_NINETY_DAYS => "SIXTY_TO_NINETY_DAYS"
41             ];
42 1     1   6  
  1         2  
43             1;