File Coverage

blib/lib/XML/SRS/FieldList.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              
2             package XML::SRS::FieldList;
3              
4 1     1   1856 use Moose;
  0            
  0            
5             use MooseX::Method::Signatures;
6             use PRANG::Graph;
7              
8             has_attr 'status' =>
9             is => 'ro',
10             isa => 'XML::SRS::Boolean',
11             xml_required => 0,
12             xml_name => 'Status',
13             ;
14              
15             has_attr 'name_servers' =>
16             is => 'ro',
17             isa => 'XML::SRS::Boolean',
18             xml_required => 0,
19             xml_name => 'NameServers',
20             ;
21              
22             has_attr 'registrant_contact' =>
23             is => 'ro',
24             isa => 'XML::SRS::Boolean',
25             xml_required => 0,
26             xml_name => 'RegistrantContact',
27             ;
28              
29             has_attr 'registered_date' =>
30             is => 'ro',
31             isa => 'XML::SRS::Boolean',
32             xml_required => 0,
33             xml_name => 'RegisteredDate',
34             ;
35              
36             has_attr 'admin_contact' =>
37             is => 'ro',
38             isa => 'XML::SRS::Boolean',
39             xml_required => 0,
40             xml_name => 'AdminContact',
41             ;
42              
43             has_attr 'technical_contact' =>
44             is => 'ro',
45             isa => 'XML::SRS::Boolean',
46             xml_required => 0,
47             xml_name => 'TechnicalContact',
48             ;
49              
50             has_attr 'locked_date' =>
51             is => 'ro',
52             isa => 'XML::SRS::Boolean',
53             xml_required => 0,
54             xml_name => 'LockedDate',
55             ;
56              
57             has_attr 'delegate' =>
58             is => 'ro',
59             isa => 'XML::SRS::Boolean',
60             xml_required => 0,
61             xml_name => 'Delegate',
62             ;
63              
64             has_attr 'registrar_id' =>
65             is => 'ro',
66             isa => 'XML::SRS::Boolean',
67             xml_required => 0,
68             xml_name => 'RegistrarId',
69             ;
70              
71             has_attr 'registrar_name' =>
72             is => 'ro',
73             isa => 'XML::SRS::Boolean',
74             xml_required => 0,
75             xml_name => 'RegistrarName',
76             ;
77              
78             has_attr 'registrant_ref' =>
79             is => 'ro',
80             isa => 'XML::SRS::Boolean',
81             xml_required => 0,
82             xml_name => 'RegistrantRef',
83             ;
84              
85             has_attr 'last_action_id' =>
86             is => 'ro',
87             isa => 'XML::SRS::Boolean',
88             xml_required => 0,
89             xml_name => 'LastActionId',
90             ;
91              
92             has_attr 'changed_by_registrar_id' =>
93             is => 'ro',
94             isa => 'XML::SRS::Boolean',
95             xml_required => 0,
96             xml_name => 'ChangedByRegistrarId',
97             ;
98              
99             has_attr 'term' =>
100             is => 'ro',
101             isa => 'XML::SRS::Boolean',
102             xml_required => 0,
103             xml_name => 'Term',
104             ;
105              
106             has_attr 'billed_until' =>
107             is => 'ro',
108             isa => 'XML::SRS::Boolean',
109             xml_required => 0,
110             xml_name => 'BilledUntil',
111             ;
112              
113             has_attr 'cancelled_date' =>
114             is => 'ro',
115             isa => 'XML::SRS::Boolean',
116             xml_required => 0,
117             xml_name => 'CancelledDate',
118             ;
119              
120             has_attr 'audit_text' =>
121             is => 'ro',
122             isa => 'XML::SRS::Boolean',
123             xml_required => 0,
124             xml_name => 'AuditText',
125             ;
126              
127             has_attr 'effective_from' =>
128             is => 'ro',
129             isa => 'XML::SRS::Boolean',
130             xml_required => 0,
131             xml_name => 'EffectiveFrom',
132             ;
133              
134             with 'XML::SRS::Node';
135              
136             1;