File Coverage

lib/JIRA/REST/Class/Issue/Changelog/Change/Item.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1             package JIRA::REST::Class::Issue::Changelog::Change::Item;
2 4     4   1735 use parent qw( JIRA::REST::Class::Abstract );
  4         7  
  4         16  
3 4     4   212 use strict;
  4         4  
  4         64  
4 4     4   10 use warnings;
  4         5  
  4         78  
5 4     4   46 use 5.010;
  4         8  
6              
7             our $VERSION = '0.10';
8             our $SOURCE = 'CPAN';
9             ## $SOURCE = 'GitHub'; # COMMENT
10             # the line above will be commented out by Dist::Zilla
11              
12             # ABSTRACT: A helper class for L<JIRA::REST::Class|JIRA::REST::Class> that represents an individual item in an individual change to a JIRA issue as an object.
13              
14             __PACKAGE__->mk_data_ro_accessors(
15             qw/ field fieldtype from fromString to toString / ##
16             );
17              
18             1;
19              
20             #pod =accessor B<field>
21             #pod
22             #pod =accessor B<fieldtype>
23             #pod
24             #pod =accessor B<from>
25             #pod
26             #pod =accessor B<fromString>
27             #pod
28             #pod =accessor B<to>
29             #pod
30             #pod =accessor B<toString>
31             #pod
32             #pod =cut
33              
34             __END__
35              
36             =pod
37              
38             =encoding UTF-8
39              
40             =for :stopwords Packy Anderson Alexey Melezhik Atlassian GreenHopper JRC ScriptRunner TODO
41             aggregateprogress aggregatetimeestimate aggregatetimeoriginalestimate
42             assigneeType avatar avatarUrls completeDate displayName duedate
43             emailAddress endDate fieldtype fixVersions fromString genericized iconUrl
44             isAssigneeTypeValid issueTypes issuekeys issuelinks issuetype jira jql
45             lastViewed maxResults originalEstimate originalEstimateSeconds parentkey
46             projectId rapidViewId remainingEstimate remainingEstimateSeconds
47             resolutiondate sprintlist startDate subtaskIssueTypes timeSpent
48             timeSpentSeconds timeestimate timeoriginalestimate timespent timetracking
49             toString updateAuthor worklog workratio
50              
51             =head1 NAME
52              
53             JIRA::REST::Class::Issue::Changelog::Change::Item - A helper class for L<JIRA::REST::Class|JIRA::REST::Class> that represents an individual item in an individual change to a JIRA issue as an object.
54              
55             =head1 VERSION
56              
57             version 0.10
58              
59             =head1 READ-ONLY ACCESSORS
60              
61             =head2 B<field>
62              
63             =head2 B<fieldtype>
64              
65             =head2 B<from>
66              
67             =head2 B<fromString>
68              
69             =head2 B<to>
70              
71             =head2 B<toString>
72              
73             =head1 RELATED CLASSES
74              
75             =over 2
76              
77             =item * L<JIRA::REST::Class|JIRA::REST::Class>
78              
79             =item * L<JIRA::REST::Class::Abstract|JIRA::REST::Class::Abstract>
80              
81             =back
82              
83             =head1 AUTHOR
84              
85             Packy Anderson <packy@cpan.org>
86              
87             =head1 COPYRIGHT AND LICENSE
88              
89             This software is Copyright (c) 2017 by Packy Anderson.
90              
91             This is free software, licensed under:
92              
93             The Artistic License 2.0 (GPL Compatible)
94              
95             =cut