The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Elive::StandardV2::SessionAttendance::Attendee - Elluminate Attendee instance class

DESCRIPTION

This is the element class of Elive::StandardV2::SessionAttendance::Attendees

PROPERTIES

attendeeName (Str)

The display name of the attendee as it appeared in the Elluminate Live! session.

attendeeJoinedAt (HiResDate)

The date and time that the attendee joined the session.

Note: This is a epoch date, but to the nearest millsecond. You can convert it to a standard unix epoch date, by removing the last three digits.

    my $join_date_msec = $attendee->attendeeJoinedAt;
    my $join_date_epoch = substr($date_msec, -3);
    my $join_date_dt = DateTime->from_epoch( epoch => $join_date_epoch );

attendeeLeftAt (HiResDate)

The date and time that the attendee left the session.

Note: This is also a epoch date, to the nearest millsecond. See attendeeJoinedAt above:

attendeeWasChair (Bool)

Flag value that indicates if the attendee joined the session as a chairperson (moderator).

METHODS