芝麻web文件管理V1.00
编辑当前文件:/home/sditechnicalteam/public_html/vendor/macsidigital/laravel-zoom/src/Meeting.php
'users/{user:id}/meetings', 'post' => 'users/{user:id}/meetings', ]; protected $allowedMethods = ['find', 'get', 'post', 'patch', 'delete']; protected $apiDataField = ''; protected $apiMultipleDataField = 'meetings'; protected $dates = [ 'start_time', 'created_at', ]; public function settings() { return $this->hasOne(MeetingSetting::class); } public function recurrence() { return $this->hasOne(Recurrence::class); } public function occurrences() { return $this->hasMany(MeetingOccurrence::class); } public function participants() { return $this->hasMany(MeetingParticipant::class); } public function registrants() { return $this->hasMany(MeetingRegistrant::class); } public function polls() { return $this->hasMany(Poll::class); } public function registrationQuestions() { return $this->hasMany(RegistrationQuestion::class); } public function invitation() { return $this->hasOne(Invitation::class); } public function liveStream() { return $this->hasOne(LiveStream::class); } public function trackingFields() { return $this->hasMany(TrackingField::class); } public function recording() { return $this->hasOne(MeetingRecording::class); } public function delete($scheduleForReminder = true) { return $this->newQuery()->addQuery('schedule_for_reminder', $scheduleForReminder)->delete(); } public function endMeeting() { return $this->newQuery()->sendRequest('put', ['meetings/'.$this->id.'/status', ['action' => 'end']])->successful(); } }