line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::DeviceFarm::GetOfferingStatusResult; |
3
|
1
|
|
|
1
|
|
563
|
use Moose; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has Current => (is => 'ro', isa => 'Paws::DeviceFarm::OfferingStatusMap', traits => ['NameInRequest'], request_name => 'current' ); |
5
|
|
|
|
|
|
|
has NextPeriod => (is => 'ro', isa => 'Paws::DeviceFarm::OfferingStatusMap', traits => ['NameInRequest'], request_name => 'nextPeriod' ); |
6
|
|
|
|
|
|
|
has NextToken => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'nextToken' ); |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
### main pod documentation begin ### |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 NAME |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
Paws::DeviceFarm::GetOfferingStatusResult |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head2 Current => L<Paws::DeviceFarm::OfferingStatusMap> |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
When specified, gets the offering status for the current period. |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head2 NextPeriod => L<Paws::DeviceFarm::OfferingStatusMap> |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
When specified, gets the offering status for the next period. |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head2 NextToken => Str |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
An identifier that was returned from the previous call to this |
32
|
|
|
|
|
|
|
operation, which can be used to return the next set of items in the |
33
|
|
|
|
|
|
|
list. |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head2 _request_id => Str |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=cut |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
1; |