Table of Contents

Class ListDeviceCredentialsRequestParameters

Namespace
Auth0.ManagementApi
Assembly
Auth0.ManagementApi.dll
[Serializable]
public record ListDeviceCredentialsRequestParameters : IEquatable<ListDeviceCredentialsRequestParameters>
Inheritance
ListDeviceCredentialsRequestParameters
Implements
Inherited Members
Extension Methods

Properties

ClientId

client_id of the devices to retrieve.

[JsonIgnore]
public Optional<string?> ClientId { get; set; }

Property Value

Optional<string>

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

Optional<string>

IncludeFields

Whether specified fields are to be included (true) or excluded (false).

[JsonIgnore]
public Optional<bool?> IncludeFields { get; set; }

Property Value

Optional<bool?>

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

Optional<bool?>

Page

Page index of the results to return. First page is 0.

[JsonIgnore]
public Optional<int?> Page { get; set; }

Property Value

Optional<int?>

PerPage

Number of results per page. There is a maximum of 1000 results allowed from this endpoint.

[JsonIgnore]
public Optional<int?> PerPage { get; set; }

Property Value

Optional<int?>

Type

Type of credentials to retrieve. Must be public_key, refresh_token or rotating_refresh_token. The property will default to refresh_token when paging is requested

[JsonIgnore]
public Optional<DeviceCredentialTypeEnum?> Type { get; set; }

Property Value

Optional<DeviceCredentialTypeEnum?>

UserId

user_id of the devices to retrieve.

[JsonIgnore]
public Optional<string?> UserId { get; set; }

Property Value

Optional<string>

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.