/* A boolean for if the player is eligible or not. */
eligible?: boolean;
/* An array including all completed activity for each video. */
completed?: PlayerVideoActivity[];
/* An array including all to be completed activity for each video. */
toComplete?: PlayerVideoActivity[];
/* Boolean to indicate whether an error was encountered during joining. */
error: boolean;
/* Message of the encountered error. */
errorMessage?: string;