File Coverage

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