Class UserGroupsResponseSchema
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record UserGroupsResponseSchema : IJsonOnDeserialized, IEquatable<UserGroupsResponseSchema>
- Inheritance
-
UserGroupsResponseSchema
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }
Property Value
ConnectionId
Identifier for the connection this group belongs to (if a connection group).
[JsonPropertyName("connection_id")]
public string? ConnectionId { get; set; }
Property Value
CreatedAt
Timestamp of when the group was created.
[JsonPropertyName("created_at")]
public DateTime? CreatedAt { get; set; }
Property Value
ExternalId
External identifier for the group, often used for SCIM synchronization. Max length of 256 characters.
[JsonPropertyName("external_id")]
public string? ExternalId { get; set; }
Property Value
Id
Unique identifier for the group (service-generated).
[JsonPropertyName("id")]
public string? Id { get; set; }
Property Value
MembershipCreatedAt
Timestamp of when the group membership was added.
[JsonPropertyName("membership_created_at")]
public DateTime? MembershipCreatedAt { get; set; }
Property Value
Name
Name of the group. Must be unique within its connection. Must contain between 1 and 128 printable ASCII characters.
[JsonPropertyName("name")]
public string? Name { get; set; }
Property Value
TenantName
Identifier for the tenant this group belongs to.
[JsonPropertyName("tenant_name")]
public string? TenantName { get; set; }
Property Value
UpdatedAt
Timestamp of when the group was last updated.
[JsonPropertyName("updated_at")]
public DateTime? UpdatedAt { get; set; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.