File Coverage

blib/lib/AsposeSlidesCloud/Object/DocumentProperty.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 AsposeSlidesCloud::Object::DocumentProperty;
2              
3             require 5.6.0;
4 1     1   461 use strict;
  1         2  
  1         27  
5 1     1   5 use warnings;
  1         2  
  1         29  
6 1     1   6 use utf8;
  1         3  
  1         9  
7 1     1   46 use JSON qw(decode_json);
  1         3  
  1         10  
8 1     1   532 use Data::Dumper;
  1         5266  
  1         62  
9 1     1   7 use Module::Runtime qw(use_module);
  1         3  
  1         7  
10 1     1   60 use Log::Any qw($log);
  1         2  
  1         7  
11 1     1   562 use Date::Parse;
  1         3761  
  1         108  
12 1     1   609 use DateTime;
  1         442760  
  1         42  
13              
14 1     1   7 use base "AsposeSlidesCloud::Object::BaseObject";
  1         2  
  1         370  
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             'Name' => 'string',
24             'Value' => 'string',
25             'BuiltIn' => 'boolean',
26             'SelfUri' => 'ResourceUri',
27             'AlternateLinks' => 'ARRAY[ResourceUri]',
28             'Links' => 'ARRAY[ResourceUri]'
29             };
30              
31             my $attribute_map = {
32             'Name' => 'Name',
33             'Value' => 'Value',
34             'BuiltIn' => 'BuiltIn',
35             'SelfUri' => 'SelfUri',
36             'AlternateLinks' => 'AlternateLinks',
37             'Links' => 'Links'
38             };
39              
40             # new object
41             sub new {
42 0     0 0   my ($class, %args) = @_;
43             my $self = {
44             #
45             'Name' => $args{'Name'},
46             #
47             'Value' => $args{'Value'},
48             #
49             'BuiltIn' => $args{'BuiltIn'},
50             #
51             'SelfUri' => $args{'SelfUri'},
52             #
53             'AlternateLinks' => $args{'AlternateLinks'},
54             #
55 0           'Links' => $args{'Links'}
56             };
57              
58 0           return bless $self, $class;
59             }
60              
61             # get swagger type of the attribute
62             sub get_swagger_types {
63 0     0 0   return $swagger_types;
64             }
65              
66             # get attribute mappping
67             sub get_attribute_map {
68 0     0 0   return $attribute_map;
69             }
70              
71             1;