Class UpdateRuleRequestContent
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record UpdateRuleRequestContent : IEquatable<UpdateRuleRequestContent>
- Inheritance
-
UpdateRuleRequestContent
- Implements
- Inherited Members
- Extension Methods
Properties
Enabled
Whether the rule is enabled (true), or disabled (false).
[JsonPropertyName("enabled")]
public bool? Enabled { get; set; }
Property Value
- bool?
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
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.