Class CreateOrganizationRequestContent
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record CreateOrganizationRequestContent : IEquatable<CreateOrganizationRequestContent>
- Inheritance
-
CreateOrganizationRequestContent
- Implements
- Inherited Members
- Extension Methods
Properties
Branding
[JsonPropertyName("branding")]
public OrganizationBranding? Branding { get; set; }
Property Value
DisplayName
Friendly name of this organization.
[JsonPropertyName("display_name")]
public string? DisplayName { get; set; }
Property Value
EnabledConnections
Connections that will be enabled for this organization. See POST enabled_connections endpoint for the object format. (Max of 10 connections allowed)
[JsonPropertyName("enabled_connections")]
public IEnumerable<ConnectionForOrganization>? EnabledConnections { get; set; }
Property Value
Metadata
[JsonPropertyName("metadata")]
public Dictionary<string, string?>? Metadata { get; set; }
Property Value
Name
The name of this organization.
[JsonPropertyName("name")]
public required string Name { get; set; }
Property Value
TokenQuota
[JsonPropertyName("token_quota")]
public CreateTokenQuota? TokenQuota { 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.