-
-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathMailboxSettings.php
50 lines (47 loc) · 1.17 KB
/
MailboxSettings.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
/**
* Modified: 2020-05-24T22:06:36+00:00
*/
namespace Office365\Outlook;
use Office365\Runtime\ClientValue;
/**
* "Settings for the primary mailbox of the signed-in user."
*/
class MailboxSettings extends ClientValue
{
/**
* Folder ID of an archive folder for the user.
* @var string
*/
public $ArchiveFolder;
/**
* The default time zone for the user's mailbox.
* @var string
*/
public $TimeZone;
/**
* The date format for the user's mailbox.
* @var string
*/
public $DateFormat;
/**
* The time format for the user's mailbox.
* @var string
*/
public $TimeFormat;
/**
* Configuration settings to automatically notify the sender of an incoming email with a message from the signed-in user.
* @var AutomaticRepliesSetting
*/
public $AutomaticRepliesSetting;
/**
* The locale information for the user, including the preferred language and country/region.
* @var LocaleInfo
*/
public $Language;
/**
* The days of the week and hours in a specific time zone that the user works.
* @var WorkingHours
*/
public $WorkingHours;
}