Details of a token assigned to a user.
C# syntax[DataContract] public class UserTokenDetail
{
[DataMember]
public string TokenType { get; set; }
[DataMember]
public bool HasPIN { get; set; }
[DataMember]
public string CommonName { get; set; }
[DataMember]
public string DN { get; set; }
}
Properties
- TokenType The type of the token.
- HasPin Whether the token has a PIN for this user.
- CommonName Common name of the token.
- DN Distinguished name of the token.