Table of Contents

Class GetActionModuleResponseContent

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

Properties

ActionsUsingModuleTotal

The number of deployed actions using this module.

[JsonPropertyName("actions_using_module_total")]
public int? ActionsUsingModuleTotal { get; set; }

Property Value

int?

AdditionalProperties

[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }

Property Value

ReadOnlyAdditionalProperties

AllChangesPublished

Whether all draft changes have been published as a version.

[JsonPropertyName("all_changes_published")]
public bool? AllChangesPublished { get; set; }

Property Value

bool?

Code

The source code from the module's draft version.

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

Property Value

string

CreatedAt

Timestamp when the module was created.

[JsonPropertyName("created_at")]
public DateTime? CreatedAt { get; set; }

Property Value

DateTime?

Dependencies

The npm dependencies from the module's draft version.

[JsonPropertyName("dependencies")]
public IEnumerable<ActionModuleDependency>? Dependencies { get; set; }

Property Value

IEnumerable<ActionModuleDependency>

Id

The unique ID of the module.

[JsonPropertyName("id")]
public string? Id { get; set; }

Property Value

string

LatestVersion

[JsonPropertyName("latest_version")]
public ActionModuleVersionReference? LatestVersion { get; set; }

Property Value

ActionModuleVersionReference

LatestVersionNumber

The version number of the latest published version. Omitted if no versions have been published.

[JsonPropertyName("latest_version_number")]
public int? LatestVersionNumber { get; set; }

Property Value

int?

Name

The name of the module.

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

Property Value

string

Secrets

The secrets from the module's draft version (names and timestamps only, values never returned).

[JsonPropertyName("secrets")]
public IEnumerable<ActionModuleSecret>? Secrets { get; set; }

Property Value

IEnumerable<ActionModuleSecret>

UpdatedAt

Timestamp when the module was last updated.

[JsonPropertyName("updated_at")]
public DateTime? UpdatedAt { get; set; }

Property Value

DateTime?

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.