Class ListOrganizationInvitationsRequestParameters
- Namespace
- Auth0.ManagementApi.Organizations
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record ListOrganizationInvitationsRequestParameters : IEquatable<ListOrganizationInvitationsRequestParameters>
- Inheritance
-
ListOrganizationInvitationsRequestParameters
- 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 (true) or excluded (false). Defaults to true.
[JsonIgnore]
public Optional<bool?> IncludeFields { get; set; }
Property Value
IncludeTotals
When true, return results inside an object that also contains the start and limit. When false (default), a direct array of results is returned. We do not yet support returning the total invitations count.
[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. Defaults to 50.
[JsonIgnore]
public Optional<int?> PerPage { get; set; }
Property Value
Sort
Field to sort by. Use field:order where order is 1 for ascending and -1 for descending Defaults to created_at:-1.
[JsonIgnore]
public Optional<string?> Sort { 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.