line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package WebService::Speechmatics::Job; |
2
|
|
|
|
|
|
|
$WebService::Speechmatics::Job::VERSION = '0.01'; |
3
|
1
|
|
|
1
|
|
15
|
use 5.010; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
26
|
|
4
|
1
|
|
|
1
|
|
3
|
use Moo 1.006; |
|
1
|
|
|
|
|
8
|
|
|
1
|
|
|
|
|
4
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
has created_at => (is => 'ro'); |
7
|
|
|
|
|
|
|
has duration => (is => 'ro'); |
8
|
|
|
|
|
|
|
has id => (is => 'ro'); |
9
|
|
|
|
|
|
|
has job_status => (is => 'ro'); |
10
|
|
|
|
|
|
|
has lang => (is => 'ro'); |
11
|
|
|
|
|
|
|
has name => (is => 'ro'); |
12
|
|
|
|
|
|
|
has next_check => (is => 'ro'); |
13
|
|
|
|
|
|
|
has notification => (is => 'ro'); |
14
|
|
|
|
|
|
|
has size => (is => 'ro'); |
15
|
|
|
|
|
|
|
has transcription => (is => 'ro'); |
16
|
|
|
|
|
|
|
has url => (is => 'ro'); |
17
|
|
|
|
|
|
|
has user_id => (is => 'ro'); |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
1; |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 NAME |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
WebService::Speechmatics::Job - data object that holds details of a transcription job |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 SYNOPSIS |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head1 DESCRIPTION |
29
|
|
|
|
|
|
|
|