-
-
Notifications
You must be signed in to change notification settings - Fork 9
mattermostmodelsusers Timezone
BigMakCode edited this page Aug 5, 2024
·
1 revision
User timezone.
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph Mattermost.Models.Users
Mattermost.Models.Users.Timezone[[Timezone]]
end
| Type | Name | Methods |
|---|---|---|
string |
AutomaticTimezoneThis value is set automatically when the "useAutomaticTimezone" is set to "true". |
get, set |
string |
ManualTimezoneValue when setting manually the timezone, i.e. "Europe/Berlin". |
get, set |
TimeZoneInfo |
TimeZoneInfoCurrent user timezone object. |
get |
string |
UseAutomaticTimezoneSet to "true" to use the browser/system timezone, "false" to set manually. Defaults to "true". |
get, set |
User timezone.
public Timezone()public string AutomaticTimezone { get; set; }This value is set automatically when the "useAutomaticTimezone" is set to "true".
public string ManualTimezone { get; set; }Value when setting manually the timezone, i.e. "Europe/Berlin".
public string UseAutomaticTimezone { get; set; }Set to "true" to use the browser/system timezone, "false" to set manually. Defaults to "true".
public TimeZoneInfo TimeZoneInfo { get; }Current user timezone object.
Generated with ModularDoc