Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new 2.7 features #169

Merged
merged 5 commits into from
Feb 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/Enum/Feature.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,9 @@ class Feature extends Enum
public const CUSTOM_VIRTUAL_BACKGROUNDS = 'customVirtualBackgrounds';
public const LIVE_TRANSCRIPTION = 'liveTranscription';
public const PRESENTATION = 'presentation';
public const CAMERA_AS_CONTENT = 'cameraAsContent';
public const SNAPSHOT_OF_CURRENT_SLIDE = 'snapshotOfCurrentSlide';
public const DOWNLOAD_PRESENTATION_ORIGINAL_FILE = 'downloadPresentationOriginalFile';
public const DOWNLOAD_PRESENTATION_CONVERTED_TO_PDF = 'downloadPresentationConvertedToPdf';
public const TIMER = 'timer';
}
18 changes: 16 additions & 2 deletions src/Parameters/CreateMeetingParameters.php
Original file line number Diff line number Diff line change
Expand Up @@ -128,12 +128,16 @@
* @method $this setDisabledFeatures(array $disabledFeatures)
* @method array getDisabledFeaturesExclude()
* @method $this setDisabledFeaturesExclude(array $disabledFeaturesExclude)
* @method string getPreUploadedPresentationOverrideDefault()
* @method $this setPreUploadedPresentationOverrideDefault(string $preUploadedPresentationOverrideDefault)
* @method bool|null isPreUploadedPresentationOverrideDefault()
* @method $this setPreUploadedPresentationOverrideDefault(bool $preUploadedPresentationOverrideDefault)
* @method string getPresentationUploadExternalUrl()
* @method $this setPresentationUploadExternalUrl(string $presentationUploadExternalUrl)
* @method string getPresentationUploadExternalDescription()
* @method $this setPresentationUploadExternalDescription(string $presentationUploadExternalDescription)
* @method string getPreUploadedPresentation()
* @method $this setPreUploadedPresentation(string $preUploadedPresentation)
* @method string getPreUploadedPresentationName()
* @method $this setPreUploadedPresentationName(string $preUploadedPresentationName)
*/
class CreateMeetingParameters extends MetaParameters
{
Expand Down Expand Up @@ -427,6 +431,16 @@ class CreateMeetingParameters extends MetaParameters
*/
protected $preUploadedPresentationOverrideDefault;

/**
* @var string
*/
protected $preUploadedPresentation;

/**
* @var string
*/
protected $preUploadedPresentationName;

/**
* @var bool
*/
Expand Down
Loading