Class CreateRuleResponseContent
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record CreateRuleResponseContent : IJsonOnDeserialized, IEquatable<CreateRuleResponseContent>
- Inheritance
-
CreateRuleResponseContent
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }
Property Value
Enabled
Whether the rule is enabled (true), or disabled (false).
[JsonPropertyName("enabled")]
public bool? Enabled { get; set; }
Property Value
- bool?
Id
ID of this rule.
[JsonPropertyName("id")]
public string? Id { get; set; }
Property Value
Name
Name of this rule.
[JsonPropertyName("name")]
public string? Name { get; set; }
Property Value
Order
Order that this rule should execute in relative to other rules. Lower-valued rules execute first.
[JsonPropertyName("order")]
public double? Order { get; set; }
Property Value
Script
Code to be executed when this rule runs.
[JsonPropertyName("script")]
public string? Script { get; set; }
Property Value
Stage
Execution stage of this rule. Can be login_success, login_failure, or pre_authorize.
[JsonPropertyName("stage")]
public string? Stage { 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.