File Coverage

blib/lib/AsposeBarCodeCloud/Object/BarcodeBuildersList.pm
Criterion Covered Total %
statement 30 35 85.7
branch n/a
condition n/a
subroutine 10 13 76.9
pod 0 3 0.0
total 40 51 78.4


line stmt bran cond sub pod time code
1             package AsposeBarCodeCloud::Object::BarcodeBuildersList;
2              
3             require 5.6.0;
4 1     1   323 use strict;
  1         2  
  1         26  
5 1     1   5 use warnings;
  1         2  
  1         19  
6 1     1   4 use utf8;
  1         2  
  1         4  
7 1     1   20 use JSON qw(decode_json);
  1         2  
  1         4  
8 1     1   79 use Data::Dumper;
  1         2  
  1         35  
9 1     1   6 use Module::Runtime qw(use_module);
  1         1  
  1         5  
10 1     1   93 use Log::Any qw($log);
  1         3  
  1         7  
11 1     1   176 use Date::Parse;
  1         2  
  1         68  
12 1     1   5 use DateTime;
  1         2  
  1         22  
13              
14 1     1   4 use base "AsposeBarCodeCloud::Object::BaseObject";
  1         1  
  1         159  
15              
16             #
17             #
18             #
19             #NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.
20             #
21              
22             my $swagger_types = {
23             'BarcodeBuilders' => 'ARRAY[BarcodeBuilder]',
24             'XStep' => 'int',
25             'YStep' => 'int'
26             };
27              
28             my $attribute_map = {
29             'BarcodeBuilders' => 'BarcodeBuilders',
30             'XStep' => 'XStep',
31             'YStep' => 'YStep'
32             };
33              
34             # new object
35             sub new {
36 0     0 0   my ($class, %args) = @_;
37             my $self = {
38             'BarcodeBuilders' => $args{'BarcodeBuilders'},
39             'XStep' => $args{'XStep'},
40 0           'YStep' => $args{'YStep'}
41            
42             };
43              
44 0           return bless $self, $class;
45             }
46              
47             # get swagger type of the attribute
48             sub get_swagger_types {
49 0     0 0   return $swagger_types;
50             }
51              
52             # get attribute mappping
53             sub get_attribute_map {
54 0     0 0   return $attribute_map;
55             }
56              
57             1;