Elive::Entity::MeetingParameters - Meeting parameters entity class


Elive documentation  | view source Contained in the Elive distribution.

Index


NAME

Top

Elive::Entity::MeetingParameters - Meeting parameters entity class

    use Elive::Entity::MeetingParameters;

    my $meeting_params
        = Elive::Entity::MeetingParameters->retrieve([$meeting_id]);

    $meeting_params->update({
           maxTalkers => 3,
           costCenter => 'acme',
           moderatorNotes => 'be there early!',
           userNotes => "don't be late!",
           recordingStatus => 'on',
           raiseHandsOnEnter => 1,
           inSessionInvitation => 1,
           followModerator => 0,
           videoWindow => 0,
         });

DESCRIPTION

Top

This class contains a range of options for a previously created meeting.

METHODS

Top

insert

The insert method is not applicable. The meeting parameters table is automatically created when you create a table.

delete

The delete method is not applicable. meeting parameters are deleted when the meeting itself is deleted.

list

The list method is not available for meeting parameters. You'll need to create a meeting, then retrieve on meeting id

See Also

Top

Elive::Entity::Meeting Elive::View::Session


Elive documentation  | view source Contained in the Elive distribution.