Skip to content

Commit e1c4050

Browse files
committed
Meeting name -> meeting title
1 parent 24a6b55 commit e1c4050

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

videodb/client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ def record_meeting(
302302
meeting_url: str,
303303
bot_name: str = None,
304304
bot_image_url: str = None,
305-
meeting_name: str = None,
305+
meeting_title: str = None,
306306
callback_url: str = None,
307307
callback_data: dict = {},
308308
time_zone: str = "UTC",
@@ -312,7 +312,7 @@ def record_meeting(
312312
:param str meeting_url: Meeting url
313313
:param str bot_name: Name of the recorder bot
314314
:param str bot_image_url: URL of the recorder bot image
315-
:param str meeting_name: Name of the meeting
315+
:param str meeting_title: Name of the meeting
316316
:param str callback_url: URL to receive callback once recording is done
317317
:param dict callback_data: Data to be sent in the callback (optional)
318318
:param str time_zone: Time zone for the meeting (default ``UTC``)
@@ -326,7 +326,7 @@ def record_meeting(
326326
"meeting_url": meeting_url,
327327
"bot_name": bot_name,
328328
"bot_image_url": bot_image_url,
329-
"meeting_name": meeting_name,
329+
"meeting_title": meeting_title,
330330
"callback_url": callback_url,
331331
"callback_data": callback_data,
332332
"time_zone": time_zone,

videodb/collection.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ def record_meeting(
518518
meeting_url: str,
519519
bot_name: str = None,
520520
bot_image_url: str = None,
521-
meeting_name: str = None,
521+
meeting_title: str = None,
522522
callback_url: str = None,
523523
callback_data: dict = {},
524524
time_zone: str = "UTC",
@@ -528,7 +528,7 @@ def record_meeting(
528528
:param str meeting_url: Meeting url
529529
:param str bot_name: Name of the recorder bot
530530
:param str bot_image_url: URL of the recorder bot image
531-
:param str meeting_name: Name of the meeting
531+
:param str meeting_title: Name of the meeting
532532
:param str callback_url: URL to receive callback once recording is done
533533
:param dict callback_data: Data to be sent in the callback (optional)
534534
:param str time_zone: Time zone for the meeting (default ``UTC``)
@@ -542,7 +542,7 @@ def record_meeting(
542542
"meeting_url": meeting_url,
543543
"bot_name": bot_name,
544544
"bot_image_url": bot_image_url,
545-
"meeting_name": meeting_name,
545+
"meeting_title": meeting_title,
546546
"callback_url": callback_url,
547547
"callback_data": callback_data,
548548
"time_zone": time_zone,

videodb/meeting.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class Meeting:
1111
:ivar str id: Unique identifier for the meeting
1212
:ivar str collection_id: ID of the collection this meeting belongs to
1313
:ivar str bot_name: Name of the meeting recording bot
14-
:ivar str name: Name of the meeting
14+
:ivar str meeting_title: Title of the meeting
1515
:ivar str meeting_url: URL of the meeting
1616
:ivar str status: Current status of the meeting
1717
:ivar str time_zone: Time zone of the meeting
@@ -26,7 +26,7 @@ def __init__(self, _connection, id: str, collection_id: str, **kwargs) -> None:
2626
self._update_attributes(kwargs)
2727

2828
def __repr__(self) -> str:
29-
return f"Meeting(id={self.id}, collection_id={self.collection_id}, name={self.name}, status={self.status}, bot_name={self.bot_name}, meeting_url={self.meeting_url})"
29+
return f"Meeting(id={self.id}, collection_id={self.collection_id}, meeting_title={self.meeting_title}, status={self.status}, bot_name={self.bot_name}, meeting_url={self.meeting_url})"
3030

3131
def _update_attributes(self, data: dict) -> None:
3232
"""Update instance attributes from API response data.
@@ -36,7 +36,7 @@ def _update_attributes(self, data: dict) -> None:
3636
:rtype: None
3737
"""
3838
self.bot_name = data.get("bot_name")
39-
self.name = data.get("meeting_name")
39+
self.meeting_title = data.get("meeting_title")
4040
self.meeting_url = data.get("meeting_url")
4141
self.status = data.get("status")
4242
self.time_zone = data.get("time_zone")

0 commit comments

Comments
 (0)