File Coverage

blib/lib/XML/EPP/Contact/Create/Response.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::Create::Response;
2              
3 1     1   2763 use Moose;
  0            
  0            
4             use PRANG::Graph;
5              
6             sub root_element { 'creData' }
7              
8             with
9             'XML::EPP::Contact::RS',
10             'XML::EPP::Contact::Node',
11             ;
12              
13             has_element 'id' =>
14             is => 'ro',
15             isa => 'XML::EPP::Common::clIDType',
16             ;
17              
18             has_element 'created' =>
19             is => "rw",
20             isa => "PRANG::XMLSchema::dateTime",
21             xml_nodeName => "crDate",
22             ;
23              
24             1;
25              
26             =head1 NAME
27              
28             ? - implement ?
29              
30             =head1 SYNOPSIS
31              
32             TODO
33              
34             =head1 DESCRIPTION
35              
36             ...
37              
38             =head2 XML Schema Definition
39              
40             <!--
41             <create> response elements.
42             -->
43             <complexType name="creDataType">
44             <sequence>
45             <element name="id" type="eppcom:clIDType"/>
46             <element name="crDate" type="dateTime"/>
47             </sequence>
48             </complexType>
49              
50             =cut