Table of Contents

Class CreatePublicKeyDeviceCredentialRequestContent

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

Properties

ClientId

client_id of the client (application) this credential is for.

[JsonPropertyName("client_id")]
public string? ClientId { get; set; }

Property Value

string

DeviceId

Unique identifier for the device. Recommend using Android_ID on Android and identifierForVendor.

[JsonPropertyName("device_id")]
public required string DeviceId { get; set; }

Property Value

string

DeviceName

Name for this device easily recognized by owner.

[JsonPropertyName("device_name")]
public required string DeviceName { get; set; }

Property Value

string

Type

[JsonPropertyName("type")]
public required DeviceCredentialPublicKeyTypeEnum Type { get; set; }

Property Value

DeviceCredentialPublicKeyTypeEnum

Value

Base64 encoded string containing the credential.

[JsonPropertyName("value")]
public required string Value { get; set; }

Property Value

string

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.