You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Locale for the meeting template (i.e. en_US)
14
+
optional: True
15
+
type: basestring
16
+
- name: isDefault
17
+
description: Flag to indicate if default or non-default meeting templates are returned
18
+
optional: True
19
+
type: bool
20
+
- name: isStandard
21
+
description: Flag to indicate if standard or non-standard meeting templates are returned
22
+
optional: True
23
+
type: bool
24
+
- name: hostEmail
25
+
description: Email address of a meeting host (Requires admin-level scope)
26
+
optional: True
27
+
type: bool
28
+
- name: siteUrl
29
+
description: URL of the Webex site from which we are listing.
30
+
optional: True
31
+
type: bool
32
+
list:
33
+
properties:
34
+
- name: id
35
+
description: Unique id for meeting template
36
+
type: basestring
37
+
- name: name
38
+
description: Name of the meeting template
39
+
type: basestring
40
+
- name: locale
41
+
description: Locale for the meeting template
42
+
type: basestring
43
+
- name: siteUrl
44
+
description: Site URL for the meeting template
45
+
type: basestring
46
+
- name: templateType
47
+
description: Type of the meeting template (meeting, webinar)
48
+
type: basestring
49
+
- name: isDefault
50
+
description: Whether or not the meeting template is a default template
51
+
type: bool
52
+
- name: isStandard
53
+
description: Whether or not the meeting template is a standard template
54
+
type: bool
55
+
- name: meeting
56
+
description: Meeting object which is used to create a meeting by the meeting template. Please note that the meeting object should be used to create a meeting immediately.
Copyright (c) 2016-2022 Cisco and/or its affiliates.
5
+
6
+
Permission is hereby granted, free of charge, to any person obtaining a copy
7
+
of this software and associated documentation files (the "Software"), to deal
8
+
in the Software without restriction, including without limitation the rights
9
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+
copies of the Software, and to permit persons to whom the Software is
11
+
furnished to do so, subject to the following conditions:
12
+
13
+
The above copyright notice and this permission notice shall be included in all
14
+
copies or substantial portions of the Software.
15
+
16
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
+
SOFTWARE.
23
+
"""
24
+
25
+
from __future__ import (
26
+
absolute_import,
27
+
division,
28
+
print_function,
29
+
unicode_literals,
30
+
)
31
+
32
+
frombuiltinsimport*
33
+
34
+
35
+
36
+
classMeetingTemplateBasicPropertiesMixin(object):
37
+
"""MeetingTemplate basic properties."""
38
+
39
+
@property
40
+
defid(self):
41
+
"""Unique id for meeting template"""
42
+
returnself._json_data.get("id")
43
+
44
+
@property
45
+
defname(self):
46
+
"""Name of the meeting template"""
47
+
returnself._json_data.get("name")
48
+
49
+
@property
50
+
deflocale(self):
51
+
"""Locale for the meeting template"""
52
+
returnself._json_data.get("locale")
53
+
54
+
@property
55
+
defsiteUrl(self):
56
+
"""Site URL for the meeting template"""
57
+
returnself._json_data.get("siteUrl")
58
+
59
+
@property
60
+
deftemplateType(self):
61
+
"""Type of the meeting template (meeting, webinar)"""
62
+
returnself._json_data.get("templateType")
63
+
64
+
@property
65
+
defisDefault(self):
66
+
"""Whether or not the meeting template is a default template"""
67
+
returnself._json_data.get("isDefault")
68
+
69
+
@property
70
+
defisStandard(self):
71
+
"""Whether or not the meeting template is a standard template"""
72
+
returnself._json_data.get("isStandard")
73
+
74
+
@property
75
+
defmeeting(self):
76
+
"""Meeting object which is used to create a meeting by the meeting template. Please note that the meeting object should be used to create a meeting immediately."""
0 commit comments