The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Bb::Collaborate::V3::Session::Attendee - Collaborate Attendee instance class

DESCRIPTION

This is the element class of Bb::Collaborate::V3::Session::Attendees

PROPERTIES

attendeeName (Str)

The display name of the attendee as it appeared in the Collaborate 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