File Coverage

blib/lib/Paws/Pinpoint/APNSSandboxChannelResponse.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Paws::Pinpoint::APNSSandboxChannelResponse;
2 1     1   602 use Moose;
  1         3  
  1         13  
3             has ApplicationId => (is => 'ro', isa => 'Str');
4             has CreationDate => (is => 'ro', isa => 'Str');
5             has Enabled => (is => 'ro', isa => 'Bool');
6             has Id => (is => 'ro', isa => 'Str');
7             has IsArchived => (is => 'ro', isa => 'Bool');
8             has LastModifiedBy => (is => 'ro', isa => 'Str');
9             has LastModifiedDate => (is => 'ro', isa => 'Str');
10             has Platform => (is => 'ro', isa => 'Str');
11             has Version => (is => 'ro', isa => 'Int');
12             1;
13              
14             ### main pod documentation begin ###
15              
16             =head1 NAME
17              
18             Paws::Pinpoint::APNSSandboxChannelResponse
19              
20             =head1 USAGE
21              
22             This class represents one of two things:
23              
24             =head3 Arguments in a call to a service
25              
26             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
27             Each attribute should be used as a named argument in the calls that expect this type of object.
28              
29             As an example, if Att1 is expected to be a Paws::Pinpoint::APNSSandboxChannelResponse object:
30              
31             $service_obj->Method(Att1 => { ApplicationId => $value, ..., Version => $value });
32              
33             =head3 Results returned from an API call
34              
35             Use accessors for each attribute. If Att1 is expected to be an Paws::Pinpoint::APNSSandboxChannelResponse object:
36              
37             $result = $service_obj->Method(...);
38             $result->Att1->ApplicationId
39              
40             =head1 DESCRIPTION
41              
42             Apple Development Push Notification Service channel definition.
43              
44             =head1 ATTRIBUTES
45              
46              
47             =head2 ApplicationId => Str
48              
49             Application id
50              
51              
52             =head2 CreationDate => Str
53              
54             When was this segment created
55              
56              
57             =head2 Enabled => Bool
58              
59             If the channel is enabled for sending messages.
60              
61              
62             =head2 Id => Str
63              
64             Channel ID. Not used, only for backwards compatibility.
65              
66              
67             =head2 IsArchived => Bool
68              
69             Is this channel archived
70              
71              
72             =head2 LastModifiedBy => Str
73              
74             Who last updated this entry
75              
76              
77             =head2 LastModifiedDate => Str
78              
79             Last date this was updated
80              
81              
82             =head2 Platform => Str
83              
84             The platform type. Will be APNS_SANDBOX.
85              
86              
87             =head2 Version => Int
88              
89             Version of channel
90              
91              
92              
93             =head1 SEE ALSO
94              
95             This class forms part of L<Paws>, describing an object used in L<Paws::Pinpoint>
96              
97             =head1 BUGS and CONTRIBUTIONS
98              
99             The source code is located here: https://github.com/pplu/aws-sdk-perl
100              
101             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
102              
103             =cut
104