forked from Black-Cockpit/NETCore.Keycloak
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKcOrganization.cs
More file actions
59 lines (50 loc) · 1.59 KB
/
KcOrganization.cs
File metadata and controls
59 lines (50 loc) · 1.59 KB
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
51
52
53
54
55
56
57
58
59
using System.Text.Json.Serialization;
namespace NETCore.Keycloak.Client.Models.Organizations;
/// <summary>
/// Represents an organization resource.
/// </summary>
public sealed class KcOrganization
{
/// <summary>
/// Gets or sets the organization id.
/// </summary>
[JsonPropertyName("id")]
public string Id { get; set; }
/// <summary>
/// Gets or sets the organization name.
/// </summary>
[JsonPropertyName("name")]
public string Name { get; set; }
/// <summary>
/// Gets or sets the organization alias.
/// </summary>
[JsonPropertyName("alias")]
public string Alias { get; set; }
/// <summary>
/// Gets or sets a value indicating whether the organization is enabled.
/// </summary>
[JsonPropertyName("enabled")]
public bool? Enabled { get; set; }
/// <summary>
/// Gets or sets the organization description.
/// </summary>
[JsonPropertyName("description")]
public string Description { get; set; }
/// <summary>
/// Gets or sets the redirect URL for the organization.
/// </summary>
[JsonPropertyName("redirectUrl")]
public string RedirectUrl { get; set; }
/// <summary>
/// Custom attributes.
/// Key = attribute name
/// Value = list of values (Keycloak style)
/// </summary>
[JsonPropertyName("attributes")]
public Dictionary<string, List<string>> Attributes { get; set; }
/// <summary>
/// Gets or sets the organization domains.
/// </summary>
[JsonPropertyName("domains")]
public List<KcOrganizationDomain> Domains { get; set; } = new();
}