Class ListOrganizationsRequestParameters
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record ListOrganizationsRequestParameters : IEquatable<ListOrganizationsRequestParameters>
- Inheritance
-
ListOrganizationsRequestParameters
- Implements
- Inherited Members
- Extension Methods
Properties
From
Optional Id from which to start selection.
[JsonIgnore]
public Optional<string?> From { get; set; }
Property Value
Sort
Field to sort by. Use field:order where order is 1 for ascending and -1 for descending. e.g. created_at:1. We currently support sorting by the following fields: name, display_name and created_at.
[JsonIgnore]
public Optional<string?> Sort { get; set; }
Property Value
Take
Number of results per page. Defaults to 50.
[JsonIgnore]
public Optional<int?> Take { 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.