Class GetRefreshTokensRequestParameters
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record GetRefreshTokensRequestParameters : IEquatable<GetRefreshTokensRequestParameters>
- Inheritance
-
GetRefreshTokensRequestParameters
- Implements
- Inherited Members
- Extension Methods
Properties
ClientId
Filter results by client ID. Only valid when user_id is provided.
[JsonIgnore]
public Optional<string?> ClientId { get; set; }
Property Value
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
From
An opaque cursor from which to start the selection (exclusive). Expires after 24 hours. Obtained from the next property of a previous response.
[JsonIgnore]
public Optional<string?> From { get; set; }
Property Value
IncludeFields
Whether specified fields are to be included (true) or excluded (false).
[JsonIgnore]
public Optional<bool?> IncludeFields { get; set; }
Property Value
Take
Number of results per page. Defaults to 50.
[JsonIgnore]
public Optional<int?> Take { get; set; }
Property Value
UserId
ID of the user whose refresh tokens to retrieve. Required.
[JsonIgnore]
public required string UserId { 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.