Class UpdateHookResponseContent
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record UpdateHookResponseContent : IJsonOnDeserialized, IEquatable<UpdateHookResponseContent>
- Inheritance
-
UpdateHookResponseContent
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }
Property Value
Dependencies
[JsonPropertyName("dependencies")]
public Dictionary<string, string>? Dependencies { get; set; }
Property Value
Enabled
Whether this hook will be executed (true) or ignored (false).
[JsonPropertyName("enabled")]
public bool? Enabled { get; set; }
Property Value
- bool?
Id
ID of this hook.
[JsonPropertyName("id")]
public string? Id { get; set; }
Property Value
Name
Name of this hook.
[JsonPropertyName("name")]
public string? Name { get; set; }
Property Value
Script
Code to be executed when this hook runs.
[JsonPropertyName("script")]
public string? Script { get; set; }
Property Value
TriggerId
Trigger ID
[JsonPropertyName("triggerId")]
public string? TriggerId { 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.