| line | stmt | bran | cond | sub | pod | time | code | 
| 1 |  |  |  |  |  |  | package AsposeStorageCloud::Object::ResponseMessage; | 
| 2 |  |  |  |  |  |  |  | 
| 3 |  |  |  |  |  |  | require 5.6.0; | 
| 4 | 1 |  |  | 1 |  | 461 | use strict; | 
|  | 1 |  |  |  |  | 3 |  | 
|  | 1 |  |  |  |  | 37 |  | 
| 5 | 1 |  |  | 1 |  | 7 | use warnings; | 
|  | 1 |  |  |  |  | 3 |  | 
|  | 1 |  |  |  |  | 33 |  | 
| 6 | 1 |  |  | 1 |  | 7 | use utf8; | 
|  | 1 |  |  |  |  | 2 |  | 
|  | 1 |  |  |  |  | 27 |  | 
| 7 | 1 |  |  | 1 |  | 47 | use JSON qw(decode_json); | 
|  | 1 |  |  |  |  | 3 |  | 
|  | 1 |  |  |  |  | 7 |  | 
| 8 | 1 |  |  | 1 |  | 120 | use Data::Dumper; | 
|  | 1 |  |  |  |  | 3 |  | 
|  | 1 |  |  |  |  | 58 |  | 
| 9 | 1 |  |  | 1 |  | 8 | use Module::Runtime qw(use_module); | 
|  | 1 |  |  |  |  | 3 |  | 
|  | 1 |  |  |  |  | 7 |  | 
| 10 | 1 |  |  | 1 |  | 87 | use Log::Any qw($log); | 
|  | 1 |  |  |  |  | 4 |  | 
|  | 1 |  |  |  |  | 7 |  | 
| 11 | 1 |  |  | 1 |  | 290 | use Date::Parse; | 
|  | 1 |  |  |  |  | 3 |  | 
|  | 1 |  |  |  |  | 114 |  | 
| 12 | 1 |  |  | 1 |  | 9 | use DateTime; | 
|  | 1 |  |  |  |  | 3 |  | 
|  | 1 |  |  |  |  | 35 |  | 
| 13 |  |  |  |  |  |  |  | 
| 14 | 1 |  |  | 1 |  | 7 | use base "AsposeStorageCloud::Object::BaseObject"; | 
|  | 1 |  |  |  |  | 4 |  | 
|  | 1 |  |  |  |  | 246 |  | 
| 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 |  |  |  |  |  |  | 'Code' => 'int', | 
| 24 |  |  |  |  |  |  | 'Message' => 'string' | 
| 25 |  |  |  |  |  |  | }; | 
| 26 |  |  |  |  |  |  |  | 
| 27 |  |  |  |  |  |  | my $attribute_map = { | 
| 28 |  |  |  |  |  |  | 'Code' => 'Code', | 
| 29 |  |  |  |  |  |  | 'Message' => 'Message' | 
| 30 |  |  |  |  |  |  | }; | 
| 31 |  |  |  |  |  |  |  | 
| 32 |  |  |  |  |  |  | # new object | 
| 33 |  |  |  |  |  |  | sub new { | 
| 34 | 0 |  |  | 0 | 0 |  | my ($class, %args) = @_; | 
| 35 |  |  |  |  |  |  | my $self = { | 
| 36 |  |  |  |  |  |  | # | 
| 37 |  |  |  |  |  |  | 'Code' => $args{'Code'}, | 
| 38 |  |  |  |  |  |  | # | 
| 39 | 0 |  |  |  |  |  | 'Message' => $args{'Message'} | 
| 40 |  |  |  |  |  |  | }; | 
| 41 |  |  |  |  |  |  |  | 
| 42 | 0 |  |  |  |  |  | return bless $self, $class; | 
| 43 |  |  |  |  |  |  | } | 
| 44 |  |  |  |  |  |  |  | 
| 45 |  |  |  |  |  |  | # get swagger type of the attribute | 
| 46 |  |  |  |  |  |  | sub get_swagger_types { | 
| 47 | 0 |  |  | 0 | 0 |  | return $swagger_types; | 
| 48 |  |  |  |  |  |  | } | 
| 49 |  |  |  |  |  |  |  | 
| 50 |  |  |  |  |  |  | # get attribute mappping | 
| 51 |  |  |  |  |  |  | sub get_attribute_map { | 
| 52 | 0 |  |  | 0 | 0 |  | return $attribute_map; | 
| 53 |  |  |  |  |  |  | } | 
| 54 |  |  |  |  |  |  |  | 
| 55 |  |  |  |  |  |  | 1; |