Table of Contents

Class CreateRuleRequestContent

Namespace
Auth0.ManagementApi
Assembly
Auth0.ManagementApi.dll
[Serializable]
public record CreateRuleRequestContent : IEquatable<CreateRuleRequestContent>
Inheritance
CreateRuleRequestContent
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 required 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 required string Script { 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.