line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package WebService::Braintree::Transaction::EscrowStatus; |
2
|
|
|
|
|
|
|
$WebService::Braintree::Transaction::EscrowStatus::VERSION = '0.93'; |
3
|
1
|
|
|
1
|
|
9
|
use strict; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
49
|
|
4
|
|
|
|
|
|
|
|
5
|
1
|
|
|
1
|
|
10
|
use constant HoldPending => 'hold_pending'; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
72
|
|
6
|
1
|
|
|
1
|
|
9
|
use constant Held => 'held'; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
43
|
|
7
|
1
|
|
|
1
|
|
6
|
use constant ReleasePending => 'release_pending'; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
35
|
|
8
|
1
|
|
|
1
|
|
6
|
use constant Released => 'released'; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
44
|
|
9
|
1
|
|
|
1
|
|
5
|
use constant Refunded => 'refunded'; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
47
|
|
10
|
|
|
|
|
|
|
|
11
|
1
|
|
|
|
|
49
|
use constant All => ( |
12
|
|
|
|
|
|
|
HoldPending, |
13
|
|
|
|
|
|
|
Held, |
14
|
|
|
|
|
|
|
ReleasePending, |
15
|
|
|
|
|
|
|
Released, |
16
|
|
|
|
|
|
|
Refunded |
17
|
1
|
|
|
1
|
|
6
|
); |
|
1
|
|
|
|
|
2
|
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
1; |