Elive

 view release on metacpan or  search on metacpan

lib/Elive/Entity/MeetingParameters.pm  view on Meta::CPAN

41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
    documentation => 'maximum number of simultaneous talkers');
__PACKAGE__->_alias('max_talkers' => 'maxTalkers');
 
has 'inSessionInvitation'  => (is => 'rw', isa => 'Bool',
                               documentation => 'Can moderators invite other individuals from within the online session');
# v9.5
__PACKAGE__->_alias('inSessionInvitations' => 'inSessionInvitation');
__PACKAGE__->_alias('invites' => 'inSessionInvitation');
 
has 'followModerator'  => (is => 'rw', isa => 'Bool',
                           documentation => 'Whiteboard slides are locked to moderator view');
__PACKAGE__->_alias('follow_moderator' => 'followModerator');
 
has 'videoWindow'  => (is => 'rw', isa => 'Int',
                       documentation => 'Max simultaneous cameras');
__PACKAGE__->_alias('max_cameras' => 'videoWindow');
 
has 'recordingObfuscation'  => (is => 'rw', isa => 'Bool');
has 'recordingResolution'  => (is => 'rw', isa => 'Str',
    documentation => 'CG:course gray, CC:course color, MG:medium gray, MC:medium color, FG:fine gray, FC:fine color');
__PACKAGE__->_alias('recording_resolution' => 'recordingResolution');

lib/Elive/Entity/Session.pm  view on Meta::CPAN

982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
The session end time C<(milliseconds)>. This can be constructed by appending
'000' to a unix ten digit epoch date.
 
=head2 facilitatorId C<(Str)>
 
The userId of the facilitator who created the session. They will
always have moderator access.
 
=head2 followModerator C<(Bool)>
 
Whiteboard slides are locked to moderator view.
 
=head2 fullPermissions C<(Bool)>
 
Whether participants can perform activities (e.g. use the whiteboard) before
the supervisor arrives.
 
=head2 id C<(Int)>
 
The sessionId (meetingId).



( run in 0.239 second using v1.01-cache-2.11-cpan-55f5a4728d2 )