File Coverage

blib/lib/XML/EPP/Contact/Notification.pm
Criterion Covered Total %
statement 1 3 33.3
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 2 4 50.0


line stmt bran cond sub pod time code
1             package XML::EPP::Contact::Notification;
2              
3 1     1   2629 use Moose;
  0            
  0            
4             use PRANG::Graph;
5              
6             sub root_element { 'panData' }
7              
8             with
9             'XML::EPP::Contact::RS',
10             'XML::EPP::Contact::Node',
11             ;
12              
13             use XML::EPP::Contact::ID;
14             has_element 'id' =>
15             is => 'ro',
16             isa => 'XML::EPP::Contact::ID',
17             required => 1,
18             ;
19              
20             has_element 'tx_id' =>
21             is => 'ro',
22             isa => 'XML::EPP::TrID',
23             xml_nodeName => 'paTRID',
24             required => 1,
25             ;
26              
27             has_element 'completed' =>
28             is => "rw",
29             isa => "PRANG::XMLSchema::dateTime",
30             xml_nodeName => "paDate",
31             ;
32              
33             1;
34              
35             =head1 NAME
36              
37             ? - implement ?
38              
39             =head1 SYNOPSIS
40              
41             TODO
42              
43             =head1 DESCRIPTION
44              
45             ...
46              
47             =head2 XML Schema Definition
48              
49             <!--
50             Pending action notification response elements.
51             -->
52             <complexType name="panDataType">
53             <sequence>
54             <element name="id" type="contact:paCLIDType"/>
55             <element name="paTRID" type="epp:trIDType"/>
56             <element name="paDate" type="dateTime"/>
57             </sequence>
58             </complexType>
59              
60             =cut