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
83 lines (74 loc) · 2.72 KB
/
KcOrganization.cs
File metadata and controls
83 lines (74 loc) · 2.72 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
using System.Text.Json.Serialization;
namespace NETCore.Keycloak.Client.Models.Organizations;
/// <summary>
/// Represents an organization resource in Keycloak.
/// <see href="https://www.keycloak.org/docs-api/latest/rest-api/index.html#OrganizationRepresentation"/>
/// </summary>
public sealed class KcOrganization
{
/// <summary>
/// Gets or sets the organization id.
/// </summary>
/// <value>
/// A string representing the unique identifier of the organization.
/// </value>
[JsonPropertyName("id")]
public string Id { get; set; }
/// <summary>
/// Gets or sets the organization name.
/// </summary>
/// <value>
/// A string representing the display name of the organization.
/// </value>
[JsonPropertyName("name")]
public string Name { get; set; }
/// <summary>
/// Gets or sets the organization alias.
/// </summary>
/// <value>
/// A string representing an alternate identifier or alias for the organization.
/// </value>
[JsonPropertyName("alias")]
public string Alias { get; set; }
/// <summary>
/// Gets or sets a value indicating whether the organization is enabled.
/// </summary>
/// <value>
/// A nullable boolean that is true when the organization is enabled, false when disabled,
/// or null if the enabled state is not set.
/// </value>
[JsonPropertyName("enabled")]
public bool? Enabled { get; set; }
/// <summary>
/// Gets or sets the organization description.
/// </summary>
/// <value>
/// A string containing a human-readable description for the organization.
/// </value>
[JsonPropertyName("description")]
public string Description { get; set; }
/// <summary>
/// Gets or sets the redirect URL for the organization.
/// </summary>
/// <value>
/// A string representing the redirect URL associated with the organization (for example, after login or registration flows).
/// </value>
[JsonPropertyName("redirectUrl")]
public string RedirectUrl { get; set; }
/// <summary>
/// Custom attributes associated with the organization.
/// </summary>
/// <value>
/// A dictionary where the key is the attribute name and the value is a list of values for that attribute (Keycloak style).
/// </value>
[JsonPropertyName("attributes")]
public Dictionary<string, List<string>> Attributes { get; set; }
/// <summary>
/// Gets or sets the organization domains.
/// </summary>
/// <value>
/// A collection of <see cref="KcOrganizationDomain"/> representing domains associated with the organization.
/// </value>
[JsonPropertyName("domains")]
public ICollection<KcOrganizationDomain> Domains { get; set; } = [];
}