Class UpdateActionModuleResponseContent
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record UpdateActionModuleResponseContent : IJsonOnDeserialized, IEquatable<UpdateActionModuleResponseContent>
- Inheritance
-
UpdateActionModuleResponseContent
- 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
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
CreatedAt
Timestamp when the module was created.
[JsonPropertyName("created_at")]
public DateTime? CreatedAt { get; set; }
Property Value
Dependencies
The npm dependencies from the module's draft version.
[JsonPropertyName("dependencies")]
public IEnumerable<ActionModuleDependency>? Dependencies { get; set; }
Property Value
Id
The unique ID of the module.
[JsonPropertyName("id")]
public string? Id { get; set; }
Property Value
LatestVersion
[JsonPropertyName("latest_version")]
public ActionModuleVersionReference? LatestVersion { get; set; }
Property Value
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
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
UpdatedAt
Timestamp when the module was last updated.
[JsonPropertyName("updated_at")]
public DateTime? UpdatedAt { 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.