-
-
Notifications
You must be signed in to change notification settings - Fork 8
mattermostmodelsteams Team
BigMakCode edited this page Aug 5, 2024
·
1 revision
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph Mattermost.Models.Teams
Mattermost.Models.Teams.Team[[Team]]
end
| Type | Name | Methods |
|---|---|---|
bool |
AllowOpenInvite |
get, set |
string |
AllowedDomains |
get, set |
long |
CreatedAt |
get, set |
long |
DeletedAt |
get, set |
string |
Description |
get, set |
string |
DisplayName |
get, set |
string |
Email |
get, set |
string |
Id |
get, set |
string |
InviteId |
get, set |
string |
Name |
get, set |
string |
PolicyId |
get, set |
string |
Type |
get, set |
long |
UpdatedAt |
get, set |
public Team()public string Id { get; set; }public long CreatedAt { get; set; }public long UpdatedAt { get; set; }public long DeletedAt { get; set; }public string DisplayName { get; set; }public string Name { get; set; }public string Description { get; set; }public string Email { get; set; }public string Type { get; set; }public string AllowedDomains { get; set; }public string InviteId { get; set; }public bool AllowOpenInvite { get; set; }public string PolicyId { get; set; }Generated with ModularDoc