Skip to content

Commit

Permalink
Make it easier to force an Action deletion
Browse files Browse the repository at this point in the history
  • Loading branch information
robertmclaws committed May 1, 2024
1 parent 1241e55 commit ecf435d
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,29 @@ namespace Auth0.ManagementApi.Models.Actions
[JsonObject(NamingStrategyType = typeof(SnakeCaseNamingStrategy))]
public class DeleteActionRequest
{

#region Properties

/// <summary>
/// Force action deletion detaching bindings
/// </summary>
public bool? Force { get; set; }

#endregion

#region Constructors

/// <summary>
/// Creates a new instance of the <see cref="DeleteActionRequest" /> class.
/// </summary>
/// <param name="force"></param>
public DeleteActionRequest(bool? force = null)
{
Force = force;
}

#endregion

}

}

0 comments on commit ecf435d

Please sign in to comment.