Table of Contents

Class ActionBase

Namespace
Auth0.ManagementApi.Models.Actions
Assembly
Auth0.ManagementApi.dll
public abstract class ActionBase
Inheritance
ActionBase
Derived
Inherited Members

Properties

Code

The source code of the action.

[JsonProperty("code")]
public string Code { get; set; }

Property Value

string

Dependencies

The list of third party npm modules, and their versions, that this action depends on.

[JsonProperty("dependencies")]
public IList<ActionDependency> Dependencies { get; set; }

Property Value

IList<ActionDependency>

Name

The name of an action.

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

Property Value

string

Runtime

The Node runtime. For example: node12, defaults to node12

[JsonProperty("runtime")]
public string Runtime { get; set; }

Property Value

string

Secrets

The list of secrets that are included in an action or a version of an action.

[JsonProperty("secrets")]
public IList<ActionSecret> Secrets { get; set; }

Property Value

IList<ActionSecret>