Class ListRolesRequestParameters
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record ListRolesRequestParameters : IEquatable<ListRolesRequestParameters>
- Inheritance
-
ListRolesRequestParameters
- Implements
- Inherited Members
- Extension Methods
Properties
IncludeTotals
Return results inside an object that contains the total result count (true) or as a direct array of results (false, default).
[JsonIgnore]
public Optional<bool?> IncludeTotals { get; set; }
Property Value
NameFilter
Optional filter on name (case-insensitive).
[JsonIgnore]
public Optional<string?> NameFilter { get; set; }
Property Value
OwnerId
Filter organization-level roles by owner ID. Required when type is "organization".
[JsonIgnore]
public Optional<string?> OwnerId { 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. Defaults to 50.
[JsonIgnore]
public Optional<int?> PerPage { get; set; }
Property Value
Type
Optional filter on the type of the role
[JsonIgnore]
public Optional<RoleTypeEnum?> Type { 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.