File Coverage

blib/lib/Paws/Pinpoint/EndpointDemographic.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::EndpointDemographic;
2 1     1   349 use Moose;
  1         3  
  1         6  
3             has AppVersion => (is => 'ro', isa => 'Str');
4             has Locale => (is => 'ro', isa => 'Str');
5             has Make => (is => 'ro', isa => 'Str');
6             has Model => (is => 'ro', isa => 'Str');
7             has ModelVersion => (is => 'ro', isa => 'Str');
8             has Platform => (is => 'ro', isa => 'Str');
9             has PlatformVersion => (is => 'ro', isa => 'Str');
10             has Timezone => (is => 'ro', isa => 'Str');
11             1;
12              
13             ### main pod documentation begin ###
14              
15             =head1 NAME
16              
17             Paws::Pinpoint::EndpointDemographic
18              
19             =head1 USAGE
20              
21             This class represents one of two things:
22              
23             =head3 Arguments in a call to a service
24              
25             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
26             Each attribute should be used as a named argument in the calls that expect this type of object.
27              
28             As an example, if Att1 is expected to be a Paws::Pinpoint::EndpointDemographic object:
29              
30             $service_obj->Method(Att1 => { AppVersion => $value, ..., Timezone => $value });
31              
32             =head3 Results returned from an API call
33              
34             Use accessors for each attribute. If Att1 is expected to be an Paws::Pinpoint::EndpointDemographic object:
35              
36             $result = $service_obj->Method(...);
37             $result->Att1->AppVersion
38              
39             =head1 DESCRIPTION
40              
41             Endpoint demographic data
42              
43             =head1 ATTRIBUTES
44              
45              
46             =head2 AppVersion => Str
47              
48             The version of the application associated with the endpoint.
49              
50              
51             =head2 Locale => Str
52              
53             The endpoint locale in the following format: The ISO 639-1 alpha-2
54             code, followed by an underscore, followed by an ISO 3166-1 alpha-2
55             value.
56              
57              
58             =head2 Make => Str
59              
60             The endpoint make, such as such as Apple or Samsung.
61              
62              
63             =head2 Model => Str
64              
65             The endpoint model, such as iPhone.
66              
67              
68             =head2 ModelVersion => Str
69              
70             The endpoint model version.
71              
72              
73             =head2 Platform => Str
74              
75             The endpoint platform, such as ios or android.
76              
77              
78             =head2 PlatformVersion => Str
79              
80             The endpoint platform version.
81              
82              
83             =head2 Timezone => Str
84              
85             The timezone of the endpoint. Specified as a tz database value, such as
86             Americas/Los_Angeles.
87              
88              
89              
90             =head1 SEE ALSO
91              
92             This class forms part of L<Paws>, describing an object used in L<Paws::Pinpoint>
93              
94             =head1 BUGS and CONTRIBUTIONS
95              
96             The source code is located here: https://github.com/pplu/aws-sdk-perl
97              
98             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
99              
100             =cut
101