Table of Contents

Class ActionSecret

Namespace
Auth0.ManagementApi.Models.Actions
Assembly
Auth0.ManagementApi.dll
public class ActionSecret
Inheritance
ActionSecret
Inherited Members

Properties

Name

The name of the particular secret, e.g. API_KEY.

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

Property Value

string

UpdatedAt

The time when the secret was last updated.

[JsonProperty("updated_at")]
public DateTime UpdatedAt { get; }

Property Value

DateTime

Value

The value of the particular secret, e.g. secret123. A secret's value can only be set upon creation. A secret's value will never be returned by the API.

[JsonProperty("value")]
public string Value { get; set; }

Property Value

string