line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Finance::CaVirtex::API::Request::Transactions; |
2
|
1
|
|
|
1
|
|
5
|
use base qw(Finance::CaVirtex::API::Request); |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
75
|
|
3
|
1
|
|
|
1
|
|
5
|
use strict; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
25
|
|
4
|
|
|
|
|
|
|
|
5
|
1
|
|
|
1
|
|
4
|
use constant URL => 'https://cavirtex.com/api2/user/transactions.json'; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
38
|
|
6
|
1
|
|
|
1
|
|
5
|
use constant ATTRIBUTES => qw(currencypair days startdate enddate); |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
39
|
|
7
|
1
|
|
|
1
|
|
11
|
use constant DATA_KEY => 'transactions'; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
208
|
|
8
|
|
|
|
|
|
|
|
9
|
0
|
|
|
0
|
0
|
|
sub url { URL } |
10
|
0
|
|
|
0
|
0
|
|
sub attributes { ATTRIBUTES } |
11
|
0
|
|
|
0
|
0
|
|
sub data_key { DATA_KEY } |
12
|
0
|
|
|
0
|
0
|
|
sub currencypair { my $self = shift; $self->get_set(@_) } |
|
0
|
|
|
|
|
|
|
13
|
0
|
|
|
0
|
0
|
|
sub days { my $self = shift; $self->get_set(@_) } |
|
0
|
|
|
|
|
|
|
14
|
0
|
|
|
0
|
0
|
|
sub startdate { my $self = shift; $self->get_set(@_) } |
|
0
|
|
|
|
|
|
|
15
|
0
|
|
|
0
|
0
|
|
sub enddate { my $self = shift; $self->get_set(@_) } |
|
0
|
|
|
|
|
|
|
16
|
0
|
|
|
0
|
0
|
|
sub is_ready_to_send { defined shift->currencypair } |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
1; |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
__END__ |