PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` # Generated by default/object.tt package Paws::PersonalizeEvents::Event; use Moose; has EventId => (is => 'ro', isa => 'Str', request_name => 'eventId', traits => ['NameInRequest']); has EventType => (is => 'ro', isa => 'Str', request_name => 'eventType', traits => ['NameInRequest'], required => 1); has EventValue => (is => 'ro', isa => 'Num', request_name => 'eventValue', traits => ['NameInRequest']); has Impression => (is => 'ro', isa => 'ArrayRef[Str|Undef]', request_name => 'impression', traits => ['NameInRequest']); has ItemId => (is => 'ro', isa => 'Str', request_name => 'itemId', traits => ['NameInRequest']); has Properties => (is => 'ro', isa => 'Str', request_name => 'properties', traits => ['NameInRequest']); has RecommendationId => (is => 'ro', isa => 'Str', request_name => 'recommendationId', traits => ['NameInRequest']); has SentAt => (is => 'ro', isa => 'Str', request_name => 'sentAt', traits => ['NameInRequest'], required => 1); 1; ### main pod documentation begin ### =head1 NAME Paws::PersonalizeEvents::Event =head1 USAGE This class represents one of two things: =head3 Arguments in a call to a service Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object. As an example, if Att1 is expected to be a Paws::PersonalizeEvents::Event object: $service_obj->Method(Att1 => { EventId => $value, ..., SentAt => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::PersonalizeEvents::Event object: $result = $service_obj->Method(...); $result->Att1->EventId =head1 DESCRIPTION Represents user interaction event information sent using the C API. =head1 ATTRIBUTES =head2 EventId => Str An ID associated with the event. If an event ID is not provided, Amazon Personalize generates a unique ID for the event. An event ID is not used as an input to the model. Amazon Personalize uses the event ID to distinquish unique events. Any subsequent events after the first with the same event ID are not used in model training. =head2 B EventType => Str The type of event, such as click or download. This property corresponds to the C field of your Interactions schema and depends on the types of events you are tracking. =head2 EventValue => Num The event value that corresponds to the C field of the Interactions schema. =head2 Impression => ArrayRef[Str|Undef] A list of item IDs that represents the sequence of items you have shown the user. For example, C<["itemId1", "itemId2", "itemId3"]>. =head2 ItemId => Str The item ID key that corresponds to the C field of the Interactions schema. =head2 Properties => Str A string map of event-specific data that you might choose to record. For example, if a user rates a movie on your site, other than movie ID (C) and rating (C) , you might also send the number of movie ratings made by the user. Each item in the map consists of a key-value pair. For example, C<{"numberOfRatings": "12"}> The keys use camel case names that match the fields in the Interactions schema. In the above example, the C would match the 'NUMBER_OF_RATINGS' field defined in the Interactions schema. =head2 RecommendationId => Str The ID of the recommendation. =head2 B SentAt => Str The timestamp (in Unix time) on the client side when the event occurred. =head1 SEE ALSO This class forms part of L, describing an object used in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut