Meeting SDK for Linux API Reference
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
tagMeetingParameter Struct Reference

Meeting parameter. Here are more detailed structural descriptions. More...

#include <meeting_service_interface.h>

Public Member Functions

 tagMeetingParameter ()
 
 ~tagMeetingParameter ()
 

Data Fields

MeetingType meeting_type
 Meeting type.
 
bool is_view_only
 View only or not. True indicates to view only.
 
bool is_auto_recording_local
 Auto local recording or not. True indicates to auto local recording.
 
bool is_auto_recording_cloud
 Auto cloud recording or not. True indicates to auto cloud recording.
 
UINT64 meeting_number
 Meeting number.
 
const zchar_tmeeting_topic
 Meeting topic.
 
const zchar_tmeeting_host
 Meeting host.
 

Detailed Description

Meeting parameter. Here are more detailed structural descriptions.

Definition at line 411 of file meeting_service_interface.h.

Constructor & Destructor Documentation

◆ tagMeetingParameter()

tagMeetingParameter::tagMeetingParameter ( )
inline

Definition at line 420 of file meeting_service_interface.h.

421 {
423 is_view_only = true;
426 meeting_number = 0;
427 meeting_topic = nullptr;
428 meeting_host = nullptr;
429 }
@ MEETING_TYPE_NONE
For initialization.
const zchar_t * meeting_topic
Meeting topic.
MeetingType meeting_type
Meeting type.
bool is_view_only
View only or not. True indicates to view only.
bool is_auto_recording_local
Auto local recording or not. True indicates to auto local recording.
UINT64 meeting_number
Meeting number.
const zchar_t * meeting_host
Meeting host.
bool is_auto_recording_cloud
Auto cloud recording or not. True indicates to auto cloud recording.

References is_auto_recording_cloud, is_auto_recording_local, is_view_only, meeting_host, meeting_number, meeting_topic, meeting_type, and MEETING_TYPE_NONE.

◆ ~tagMeetingParameter()

tagMeetingParameter::~tagMeetingParameter ( )
inline

Definition at line 431 of file meeting_service_interface.h.

432 {
433 if (meeting_host)
434 {
435 delete[] meeting_host;
436 meeting_host = nullptr;
437 }
438 if (meeting_topic)
439 {
440 delete[] meeting_topic;
441 meeting_topic = nullptr;
442 }
443 }

References meeting_host, and meeting_topic.

Field Documentation

◆ is_auto_recording_cloud

bool tagMeetingParameter::is_auto_recording_cloud

Auto cloud recording or not. True indicates to auto cloud recording.

Definition at line 416 of file meeting_service_interface.h.

Referenced by tagMeetingParameter().

◆ is_auto_recording_local

bool tagMeetingParameter::is_auto_recording_local

Auto local recording or not. True indicates to auto local recording.

Definition at line 415 of file meeting_service_interface.h.

Referenced by tagMeetingParameter().

◆ is_view_only

bool tagMeetingParameter::is_view_only

View only or not. True indicates to view only.

Definition at line 414 of file meeting_service_interface.h.

Referenced by tagMeetingParameter().

◆ meeting_host

const zchar_t* tagMeetingParameter::meeting_host

Meeting host.

Definition at line 419 of file meeting_service_interface.h.

Referenced by tagMeetingParameter(), and ~tagMeetingParameter().

◆ meeting_number

UINT64 tagMeetingParameter::meeting_number

Meeting number.

Definition at line 417 of file meeting_service_interface.h.

Referenced by tagMeetingParameter().

◆ meeting_topic

const zchar_t* tagMeetingParameter::meeting_topic

Meeting topic.

Definition at line 418 of file meeting_service_interface.h.

Referenced by tagMeetingParameter(), and ~tagMeetingParameter().

◆ meeting_type

MeetingType tagMeetingParameter::meeting_type

Meeting type.

Definition at line 413 of file meeting_service_interface.h.

Referenced by tagMeetingParameter().