Table of Contents

Class UpdateRuleResponseContent

Namespace
Auth0.ManagementApi
Assembly
Auth0.ManagementApi.dll
[Serializable]
public record UpdateRuleResponseContent : IJsonOnDeserialized, IEquatable<UpdateRuleResponseContent>
Inheritance
UpdateRuleResponseContent
Implements
Inherited Members
Extension Methods

Properties

AdditionalProperties

[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }

Property Value

ReadOnlyAdditionalProperties

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

string

Name

Name of this rule.

[JsonPropertyName("name")]
public string? Name { get; set; }

Property Value

string

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

double?

Script

Code to be executed when this rule runs.

[JsonPropertyName("script")]
public string? Script { get; set; }

Property Value

string

Stage

Execution stage of this rule. Can be login_success, login_failure, or pre_authorize.

[JsonPropertyName("stage")]
public string? Stage { get; set; }

Property Value

string

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.