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
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
DeviceName
Name for this device easily recognized by owner.
[JsonPropertyName("device_name")]
public required string DeviceName { get; set; }
Property Value
Type
[JsonPropertyName("type")]
public required DeviceCredentialPublicKeyTypeEnum Type { get; set; }
Property Value
Value
Base64 encoded string containing the credential.
[JsonPropertyName("value")]
public required string Value { 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.