line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package WebService::Speechmatics::Speaker; |
2
|
|
|
|
|
|
|
$WebService::Speechmatics::Speaker::VERSION = '0.01'; |
3
|
1
|
|
|
1
|
|
10
|
use 5.010; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
26
|
|
4
|
1
|
|
|
1
|
|
3
|
use Moo 1.006; |
|
1
|
|
|
|
|
8
|
|
|
1
|
|
|
|
|
3
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
has duration => (is => 'ro'); |
7
|
|
|
|
|
|
|
has confidence => (is => 'ro'); |
8
|
|
|
|
|
|
|
has name => (is => 'ro'); |
9
|
|
|
|
|
|
|
has time => (is => 'ro'); |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
1; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 NAME |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
WebService::Speechmatics::Speaker - data object that holds details of a speaker in a transcript |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 SYNOPSIS |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 DESCRIPTION |
21
|
|
|
|
|
|
|
|