NAME

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

SYNOPSIS

Note: the insert() and update() methods are depreciated. For alternatives, please see Elive::Entity::Session.

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

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

METHODS

retrieve

my $paremeters = Elive::Entity::MeetingParameters->retrieve($meeting_id);

Retrieves the meeting parameters for a meeting.

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.

See Also

Elive::Entity::Session