Skip to content

Commit b108e9a

Browse files
committed
Upgrade Python SDK to spec 1.20.8.dev2
1 parent f09dca0 commit b108e9a

File tree

3 files changed

+87
-2
lines changed

3 files changed

+87
-2
lines changed

docs/CalendarEvent.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,12 @@ Name | Type | Description | Notes
2222
**interested_user_count** | **int** | | [optional]
2323
**is_draft** | **bool** | | [optional]
2424
**languages** | **list[str]** | Languages that might be spoken at this event | [optional]
25+
**occurrence_kind** | **str** | So far if it exists, always the string \"single\" | [optional]
2526
**owner_id** | **str** | | [optional]
2627
**platforms** | [**list[CalendarEventPlatform]**](CalendarEventPlatform.md) | | [optional]
28+
**recurrence** | **str** | So far unused, always \"null\" | [optional]
2729
**role_ids** | **list[str]** | Group roles that may join this event | [optional]
30+
**series_id** | **str** | So far unused, always \"null\" | [optional]
2831
**starts_at** | **datetime** | |
2932
**tags** | **list[str]** | Custom tags for this event | [optional]
3033
**title** | **str** | |

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
from setuptools import setup, find_packages # noqa: H301
9393

9494
NAME = "vrchatapi"
95-
VERSION = "1.20.8.dev1"
95+
VERSION = "1.20.8.dev2"
9696
# To install the library, run the following
9797
#
9898
# python setup.py install

vrchatapi/models/calendar_event.py

Lines changed: 83 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,12 @@ class CalendarEvent(object):
5353
'interested_user_count': 'int',
5454
'is_draft': 'bool',
5555
'languages': 'list[str]',
56+
'occurrence_kind': 'str',
5657
'owner_id': 'str',
5758
'platforms': 'list[CalendarEventPlatform]',
59+
'recurrence': 'str',
5860
'role_ids': 'list[str]',
61+
'series_id': 'str',
5962
'starts_at': 'datetime',
6063
'tags': 'list[str]',
6164
'title': 'str',
@@ -83,9 +86,12 @@ class CalendarEvent(object):
8386
'interested_user_count': 'interestedUserCount',
8487
'is_draft': 'isDraft',
8588
'languages': 'languages',
89+
'occurrence_kind': 'occurrenceKind',
8690
'owner_id': 'ownerId',
8791
'platforms': 'platforms',
92+
'recurrence': 'recurrence',
8893
'role_ids': 'roleIds',
94+
'series_id': 'seriesId',
8995
'starts_at': 'startsAt',
9096
'tags': 'tags',
9197
'title': 'title',
@@ -95,7 +101,7 @@ class CalendarEvent(object):
95101
'uses_instance_overflow': 'usesInstanceOverflow'
96102
}
97103

98-
def __init__(self, access_type=None, category=None, close_instance_after_end_minutes=None, created_at=None, deleted_at=None, description=None, duration_in_ms=None, ends_at=None, featured=None, guest_early_join_minutes=None, host_early_join_minutes=None, id=None, image_id=None, image_url=None, interested_user_count=None, is_draft=None, languages=None, owner_id=None, platforms=None, role_ids=None, starts_at=None, tags=None, title=None, type=None, updated_at=None, user_interest=None, uses_instance_overflow=None, local_vars_configuration=None): # noqa: E501
104+
def __init__(self, access_type=None, category=None, close_instance_after_end_minutes=None, created_at=None, deleted_at=None, description=None, duration_in_ms=None, ends_at=None, featured=None, guest_early_join_minutes=None, host_early_join_minutes=None, id=None, image_id=None, image_url=None, interested_user_count=None, is_draft=None, languages=None, occurrence_kind=None, owner_id=None, platforms=None, recurrence=None, role_ids=None, series_id=None, starts_at=None, tags=None, title=None, type=None, updated_at=None, user_interest=None, uses_instance_overflow=None, local_vars_configuration=None): # noqa: E501
99105
"""CalendarEvent - a model defined in OpenAPI""" # noqa: E501
100106
if local_vars_configuration is None:
101107
local_vars_configuration = Configuration.get_default_copy()
@@ -118,9 +124,12 @@ def __init__(self, access_type=None, category=None, close_instance_after_end_min
118124
self._interested_user_count = None
119125
self._is_draft = None
120126
self._languages = None
127+
self._occurrence_kind = None
121128
self._owner_id = None
122129
self._platforms = None
130+
self._recurrence = None
123131
self._role_ids = None
132+
self._series_id = None
124133
self._starts_at = None
125134
self._tags = None
126135
self._title = None
@@ -157,11 +166,15 @@ def __init__(self, access_type=None, category=None, close_instance_after_end_min
157166
self.is_draft = is_draft
158167
if languages is not None:
159168
self.languages = languages
169+
if occurrence_kind is not None:
170+
self.occurrence_kind = occurrence_kind
160171
if owner_id is not None:
161172
self.owner_id = owner_id
162173
if platforms is not None:
163174
self.platforms = platforms
175+
self.recurrence = recurrence
164176
self.role_ids = role_ids
177+
self.series_id = series_id
165178
self.starts_at = starts_at
166179
if tags is not None:
167180
self.tags = tags
@@ -544,6 +557,29 @@ def languages(self, languages):
544557

545558
self._languages = languages
546559

560+
@property
561+
def occurrence_kind(self):
562+
"""Gets the occurrence_kind of this CalendarEvent. # noqa: E501
563+
564+
So far if it exists, always the string \"single\" # noqa: E501
565+
566+
:return: The occurrence_kind of this CalendarEvent. # noqa: E501
567+
:rtype: str
568+
"""
569+
return self._occurrence_kind
570+
571+
@occurrence_kind.setter
572+
def occurrence_kind(self, occurrence_kind):
573+
"""Sets the occurrence_kind of this CalendarEvent.
574+
575+
So far if it exists, always the string \"single\" # noqa: E501
576+
577+
:param occurrence_kind: The occurrence_kind of this CalendarEvent. # noqa: E501
578+
:type occurrence_kind: str
579+
"""
580+
581+
self._occurrence_kind = occurrence_kind
582+
547583
@property
548584
def owner_id(self):
549585
"""Gets the owner_id of this CalendarEvent. # noqa: E501
@@ -586,6 +622,29 @@ def platforms(self, platforms):
586622

587623
self._platforms = platforms
588624

625+
@property
626+
def recurrence(self):
627+
"""Gets the recurrence of this CalendarEvent. # noqa: E501
628+
629+
So far unused, always \"null\" # noqa: E501
630+
631+
:return: The recurrence of this CalendarEvent. # noqa: E501
632+
:rtype: str
633+
"""
634+
return self._recurrence
635+
636+
@recurrence.setter
637+
def recurrence(self, recurrence):
638+
"""Sets the recurrence of this CalendarEvent.
639+
640+
So far unused, always \"null\" # noqa: E501
641+
642+
:param recurrence: The recurrence of this CalendarEvent. # noqa: E501
643+
:type recurrence: str
644+
"""
645+
646+
self._recurrence = recurrence
647+
589648
@property
590649
def role_ids(self):
591650
"""Gets the role_ids of this CalendarEvent. # noqa: E501
@@ -609,6 +668,29 @@ def role_ids(self, role_ids):
609668

610669
self._role_ids = role_ids
611670

671+
@property
672+
def series_id(self):
673+
"""Gets the series_id of this CalendarEvent. # noqa: E501
674+
675+
So far unused, always \"null\" # noqa: E501
676+
677+
:return: The series_id of this CalendarEvent. # noqa: E501
678+
:rtype: str
679+
"""
680+
return self._series_id
681+
682+
@series_id.setter
683+
def series_id(self, series_id):
684+
"""Sets the series_id of this CalendarEvent.
685+
686+
So far unused, always \"null\" # noqa: E501
687+
688+
:param series_id: The series_id of this CalendarEvent. # noqa: E501
689+
:type series_id: str
690+
"""
691+
692+
self._series_id = series_id
693+
612694
@property
613695
def starts_at(self):
614696
"""Gets the starts_at of this CalendarEvent. # noqa: E501

0 commit comments

Comments
 (0)