Class ListAculsRequestParameters
- Namespace
- Auth0.ManagementApi.Prompts
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record ListAculsRequestParameters : IEquatable<ListAculsRequestParameters>
- Inheritance
-
ListAculsRequestParameters
- Implements
- Inherited Members
- Extension Methods
Properties
Fields
Comma-separated list of fields to include or exclude (based on value provided for include_fields) in the result. Leave empty to retrieve all fields.
[JsonIgnore]
public Optional<string?> Fields { get; set; }
Property Value
IncludeFields
Whether specified fields are to be included (default: true) or excluded (false).
[JsonIgnore]
public Optional<bool?> IncludeFields { get; set; }
Property Value
IncludeTotals
Return results inside an object that contains the total configuration count (true) or as a direct array of results (false, default).
[JsonIgnore]
public Optional<bool?> IncludeTotals { get; set; }
Property Value
Page
Page index of the results to return. First page is 0.
[JsonIgnore]
public Optional<int?> Page { get; set; }
Property Value
PerPage
Number of results per page. Maximum value is 100, default value is 50.
[JsonIgnore]
public Optional<int?> PerPage { get; set; }
Property Value
Prompt
Name of the prompt to filter by
[JsonIgnore]
public Optional<string?> Prompt { get; set; }
Property Value
RenderingMode
Rendering mode to filter by
[JsonIgnore]
public Optional<AculRenderingModeEnum?> RenderingMode { get; set; }
Property Value
Screen
Name of the screen to filter by
[JsonIgnore]
public Optional<string?> Screen { 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.