line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package WebService::TypePad::Object::MobileProfile; |
2
|
1
|
|
|
1
|
|
1254
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
31
|
|
3
|
1
|
|
|
1
|
|
6
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
22
|
|
4
|
1
|
|
|
1
|
|
6
|
use WebService::TypePad::Util::Coerce; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
20
|
|
5
|
1
|
|
|
1
|
|
5
|
use base qw(WebService::TypePad::Object::Base); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
191
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
sub email_address { |
8
|
0
|
|
|
0
|
1
|
|
my $self = shift; |
9
|
0
|
0
|
|
|
|
|
if (@_) { |
10
|
0
|
|
|
|
|
|
$self->{data}{emailAddress} = WebService::TypePad::Util::Coerce::coerce_string_in($_[0]); |
11
|
0
|
|
|
|
|
|
return $_[0]; |
12
|
|
|
|
|
|
|
} |
13
|
|
|
|
|
|
|
else { |
14
|
0
|
|
|
|
|
|
return $self->{data}{emailAddress}; |
15
|
|
|
|
|
|
|
} |
16
|
|
|
|
|
|
|
} |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
1; |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 NAME |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
WebService::TypePad::Object::MobileProfile - Perl representation of TypePad's MobileProfile object type |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 SYNOPSIS |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
use WebService::TypePad::Object::MobileProfile; |
27
|
|
|
|
|
|
|
my $mobile_profile = WebService::TypePad::Object::MobileProfile->new(); |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 DESCRIPTION |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
This is a Perl representation of TypePad's MobileProfile object type. |
32
|
|
|
|
|
|
|
For more information about this type and its parameters, see L. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 PROPERTIES |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
Each of these properties has an accessor method which will retrieve the property's value when called with no arguments or set the property's value when called with one argument. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head2 $mobile_profile->email_address |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
A private email address for posting via email |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
Returns a single C value. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head1 SEE ALSO |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=over 1 |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=item * L |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=back |