alibabacloud-aliding20230426 2.47.0__py3-none-any.whl → 2.47.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- alibabacloud_aliding20230426/__init__.py +1 -1
- alibabacloud_aliding20230426/models/_create_event_response_body.py +8 -0
- alibabacloud_aliding20230426/models/_get_dingtalk_meeting_member_event_response_body.py +8 -0
- {alibabacloud_aliding20230426-2.47.0.dist-info → alibabacloud_aliding20230426-2.47.1.dist-info}/METADATA +2 -2
- {alibabacloud_aliding20230426-2.47.0.dist-info → alibabacloud_aliding20230426-2.47.1.dist-info}/RECORD +8 -8
- {alibabacloud_aliding20230426-2.47.0.dist-info → alibabacloud_aliding20230426-2.47.1.dist-info}/LICENSE +0 -0
- {alibabacloud_aliding20230426-2.47.0.dist-info → alibabacloud_aliding20230426-2.47.1.dist-info}/WHEEL +0 -0
- {alibabacloud_aliding20230426-2.47.0.dist-info → alibabacloud_aliding20230426-2.47.1.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '2.47.
|
|
1
|
+
__version__ = '2.47.1'
|
|
@@ -13,6 +13,7 @@ class CreateEventResponseBody(DaraModel):
|
|
|
13
13
|
attendees: List[main_models.CreateEventResponseBodyAttendees] = None,
|
|
14
14
|
create_time: str = None,
|
|
15
15
|
description: str = None,
|
|
16
|
+
encrypted_id: str = None,
|
|
16
17
|
end: main_models.CreateEventResponseBodyEnd = None,
|
|
17
18
|
id: str = None,
|
|
18
19
|
is_all_day: bool = None,
|
|
@@ -31,6 +32,7 @@ class CreateEventResponseBody(DaraModel):
|
|
|
31
32
|
self.attendees = attendees
|
|
32
33
|
self.create_time = create_time
|
|
33
34
|
self.description = description
|
|
35
|
+
self.encrypted_id = encrypted_id
|
|
34
36
|
self.end = end
|
|
35
37
|
self.id = id
|
|
36
38
|
self.is_all_day = is_all_day
|
|
@@ -91,6 +93,9 @@ class CreateEventResponseBody(DaraModel):
|
|
|
91
93
|
if self.description is not None:
|
|
92
94
|
result['description'] = self.description
|
|
93
95
|
|
|
96
|
+
if self.encrypted_id is not None:
|
|
97
|
+
result['encryptedId'] = self.encrypted_id
|
|
98
|
+
|
|
94
99
|
if self.end is not None:
|
|
95
100
|
result['end'] = self.end.to_map()
|
|
96
101
|
|
|
@@ -153,6 +158,9 @@ class CreateEventResponseBody(DaraModel):
|
|
|
153
158
|
if m.get('description') is not None:
|
|
154
159
|
self.description = m.get('description')
|
|
155
160
|
|
|
161
|
+
if m.get('encryptedId') is not None:
|
|
162
|
+
self.encrypted_id = m.get('encryptedId')
|
|
163
|
+
|
|
156
164
|
if m.get('end') is not None:
|
|
157
165
|
temp_model = main_models.CreateEventResponseBodyEnd()
|
|
158
166
|
self.end = temp_model.from_map(m.get('end'))
|
|
@@ -69,11 +69,13 @@ class GetDingtalkMeetingMemberEventResponseBody(DaraModel):
|
|
|
69
69
|
class GetDingtalkMeetingMemberEventResponseBodyData(DaraModel):
|
|
70
70
|
def __init__(
|
|
71
71
|
self,
|
|
72
|
+
conf_module: str = None,
|
|
72
73
|
event_id: str = None,
|
|
73
74
|
event_name: str = None,
|
|
74
75
|
event_type: str = None,
|
|
75
76
|
ts: int = None,
|
|
76
77
|
):
|
|
78
|
+
self.conf_module = conf_module
|
|
77
79
|
self.event_id = event_id
|
|
78
80
|
self.event_name = event_name
|
|
79
81
|
self.event_type = event_type
|
|
@@ -87,6 +89,9 @@ class GetDingtalkMeetingMemberEventResponseBodyData(DaraModel):
|
|
|
87
89
|
_map = super().to_map()
|
|
88
90
|
if _map is not None:
|
|
89
91
|
result = _map
|
|
92
|
+
if self.conf_module is not None:
|
|
93
|
+
result['confModule'] = self.conf_module
|
|
94
|
+
|
|
90
95
|
if self.event_id is not None:
|
|
91
96
|
result['eventId'] = self.event_id
|
|
92
97
|
|
|
@@ -103,6 +108,9 @@ class GetDingtalkMeetingMemberEventResponseBodyData(DaraModel):
|
|
|
103
108
|
|
|
104
109
|
def from_map(self, m: dict = None):
|
|
105
110
|
m = m or dict()
|
|
111
|
+
if m.get('confModule') is not None:
|
|
112
|
+
self.conf_module = m.get('confModule')
|
|
113
|
+
|
|
106
114
|
if m.get('eventId') is not None:
|
|
107
115
|
self.event_id = m.get('eventId')
|
|
108
116
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: alibabacloud-aliding20230426
|
|
3
|
-
Version: 2.47.
|
|
3
|
+
Version: 2.47.1
|
|
4
4
|
Summary: Alibaba Cloud aliding (20230426) SDK Library for Python
|
|
5
5
|
Home-page: https://github.com/aliyun/alibabacloud-python-sdk
|
|
6
6
|
Author: Alibaba Cloud SDK
|
|
@@ -23,7 +23,7 @@ Classifier: Topic :: Software Development
|
|
|
23
23
|
Requires-Python: >=3.7
|
|
24
24
|
Description-Content-Type: text/markdown
|
|
25
25
|
License-File: LICENSE
|
|
26
|
-
Requires-Dist: alibabacloud-tea-openapi (<1.0.0,>=0.4.
|
|
26
|
+
Requires-Dist: alibabacloud-tea-openapi (<1.0.0,>=0.4.3)
|
|
27
27
|
Requires-Dist: darabonba-core (<2.0.0,>=1.0.0)
|
|
28
28
|
|
|
29
29
|
English | [简体中文](README-CN.md)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
alibabacloud_aliding20230426/__init__.py,sha256=
|
|
1
|
+
alibabacloud_aliding20230426/__init__.py,sha256=JDeDv-PFbk8F01LiiqoIv7eAa7s6WvBJrfLDTgkFqRI,22
|
|
2
2
|
alibabacloud_aliding20230426/client.py,sha256=sKef2I41R9oGQ4uAaZv-kr9nfLoQ98-WDhIy77gkiYs,1539347
|
|
3
3
|
alibabacloud_aliding20230426/models/__init__.py,sha256=p_7UyUVKgxEvSDLf3MWD9QnglbfpNKrctx-rnbC3TX4,310519
|
|
4
4
|
alibabacloud_aliding20230426/models/_add_attendee_headers.py,sha256=2Nep_0c4mWYJGepSXxglYdxwn-bpz-4VUV17LY1sqeI,2065
|
|
@@ -200,7 +200,7 @@ alibabacloud_aliding20230426/models/_create_dingtalk_personal_todo_task_shrink_r
|
|
|
200
200
|
alibabacloud_aliding20230426/models/_create_event_headers.py,sha256=SI4upKwqZF9gLVxQ3a0XRiJ-JhOM88QCJyPTLcEhz2c,2063
|
|
201
201
|
alibabacloud_aliding20230426/models/_create_event_request.py,sha256=Hm-U0fJnkW6tXNkNqviaC2zQNWcSYC6M0-qM5OZAA2M,18610
|
|
202
202
|
alibabacloud_aliding20230426/models/_create_event_response.py,sha256=y17qbr1PtHq7W_eQc27VJEDO5OgUaQMGmFuILjPtFLc,1469
|
|
203
|
-
alibabacloud_aliding20230426/models/_create_event_response_body.py,sha256=
|
|
203
|
+
alibabacloud_aliding20230426/models/_create_event_response_body.py,sha256=6YDzJgtWD8CqNNGSciVe_n0NSdD-VJlYaeGlw-SJGZo,20951
|
|
204
204
|
alibabacloud_aliding20230426/models/_create_event_shrink_headers.py,sha256=Dj_PSbJtrFrJ7Iy36j-H6IUlyPT4DZye5k5Sny7kBeU,1180
|
|
205
205
|
alibabacloud_aliding20230426/models/_create_event_shrink_request.py,sha256=zbxwW4PR1ur1tSU6mxyROaF1s1U9VXHvs8oiX1YLK4E,4923
|
|
206
206
|
alibabacloud_aliding20230426/models/_create_live_headers.py,sha256=-3e2kA2AlnelW7yfxKIK5PJ238DzbVUUV_1G4tVZp6s,2059
|
|
@@ -559,7 +559,7 @@ alibabacloud_aliding20230426/models/_get_dingtalk_meeting_list_shrink_request.py
|
|
|
559
559
|
alibabacloud_aliding20230426/models/_get_dingtalk_meeting_member_event_headers.py,sha256=SBICu3wthscQjwMYZpPHJ1AgUBcIW7-HYt7l42wgX7U,2135
|
|
560
560
|
alibabacloud_aliding20230426/models/_get_dingtalk_meeting_member_event_request.py,sha256=yfqB4r-SujJGjhVEPiVujZTrdvF5ZiiKyLKjjfxchBw,2998
|
|
561
561
|
alibabacloud_aliding20230426/models/_get_dingtalk_meeting_member_event_response.py,sha256=6ZfKNl5IDPfrt0eJhhi4XTOQPN994CdlZ4wUuoCxGY8,1523
|
|
562
|
-
alibabacloud_aliding20230426/models/_get_dingtalk_meeting_member_event_response_body.py,sha256=
|
|
562
|
+
alibabacloud_aliding20230426/models/_get_dingtalk_meeting_member_event_response_body.py,sha256=RpYO0mItwN68nnQANeEFTIjIL58WZNcpnfpFwt1dvHA,3638
|
|
563
563
|
alibabacloud_aliding20230426/models/_get_dingtalk_meeting_member_event_shrink_headers.py,sha256=WX2pwLvBq__rf5aVdhgdhT0ztXJ1kCx_xX2bC103poI,1198
|
|
564
564
|
alibabacloud_aliding20230426/models/_get_dingtalk_meeting_member_event_shrink_request.py,sha256=6-jvvc5X-_BC-W4MoOYiksoEL_f1cOp4cZMu5XhQNXU,2113
|
|
565
565
|
alibabacloud_aliding20230426/models/_get_dingtalk_meeting_member_list_headers.py,sha256=wt6v1BrTOKqmUUCaQUKl0TyAHVfllI97AIhvoamSTmE,2131
|
|
@@ -1574,8 +1574,8 @@ alibabacloud_aliding20230426/models/_wear_org_honor_response.py,sha256=NA11SdSDs
|
|
|
1574
1574
|
alibabacloud_aliding20230426/models/_wear_org_honor_response_body.py,sha256=t7_UeHCO9ntrCa2Co639nVod66_ac8-VE8u7Ar5ZotM,3136
|
|
1575
1575
|
alibabacloud_aliding20230426/models/_wear_org_honor_shrink_headers.py,sha256=nUEMa4IfVyIhsxznv_BKDKhOVCugHpvU3X5kzfc56xE,1181
|
|
1576
1576
|
alibabacloud_aliding20230426/models/_wear_org_honor_shrink_request.py,sha256=gDPOmQxWayWh5ht9nXOLswcU6vci1nLIgdBJnGPdumg,1880
|
|
1577
|
-
alibabacloud_aliding20230426-2.47.
|
|
1578
|
-
alibabacloud_aliding20230426-2.47.
|
|
1579
|
-
alibabacloud_aliding20230426-2.47.
|
|
1580
|
-
alibabacloud_aliding20230426-2.47.
|
|
1581
|
-
alibabacloud_aliding20230426-2.47.
|
|
1577
|
+
alibabacloud_aliding20230426-2.47.1.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
1578
|
+
alibabacloud_aliding20230426-2.47.1.dist-info/METADATA,sha256=bPJFXaZzG5y16nahRNAapPN8C4WFJXRUC78XUv7ff5Y,2318
|
|
1579
|
+
alibabacloud_aliding20230426-2.47.1.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
1580
|
+
alibabacloud_aliding20230426-2.47.1.dist-info/top_level.txt,sha256=-PldRiL4BaIcC8lMj_rfQts3uDrz2FNYlwzb82aQOAs,29
|
|
1581
|
+
alibabacloud_aliding20230426-2.47.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|