Table of Contents

Class ListHooksRequestParameters

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

Properties

Enabled

Optional filter on whether a hook is enabled (true) or disabled (false).

[JsonIgnore]
public Optional<bool?> Enabled { get; set; }

Property Value

Optional<bool?>

Fields

Comma-separated list of fields to include in the result. Leave empty to retrieve all fields.

[JsonIgnore]
public Optional<string?> Fields { get; set; }

Property Value

Optional<string>

IncludeTotals

Return results inside an object that contains the total result count (true) or as a direct array of results (false, default).

[JsonIgnore]
public Optional<bool?> IncludeTotals { get; set; }

Property Value

Optional<bool?>

Page

Page index of the results to return. First page is 0.

[JsonIgnore]
public Optional<int?> Page { get; set; }

Property Value

Optional<int?>

PerPage

Number of results per page.

[JsonIgnore]
public Optional<int?> PerPage { get; set; }

Property Value

Optional<int?>

TriggerId

Retrieves hooks that match the trigger

[JsonIgnore]
public Optional<HookTriggerIdEnum?> TriggerId { get; set; }

Property Value

Optional<HookTriggerIdEnum?>

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.