File Coverage

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