Skip to content

Commit cbf4da7

Browse files
authored
Merge pull request O365#1050 from sdelgadoc/master
Added time zone & working hours to MailboxSettings class
2 parents 417d8cf + 29bc0d1 commit cbf4da7

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

O365/mailbox.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,8 @@ def __init__(self, *, parent=None, con=None, **kwargs):
204204
self.automaticrepliessettings = self.autoreply_constructor(
205205
parent=self, **{self._cloud_data_key: autorepliessettings}
206206
)
207+
self.timezone = cloud_data.get("timeZone")
208+
self.workinghours = cloud_data.get("workingHours")
207209

208210
def __str__(self):
209211
"""Representation of the MailboxSetting via the Graph api as a string."""

0 commit comments

Comments
 (0)