hashedSecret property

  1. @Column(nullable: true)
String? hashedSecret
getter/setter pairinherited

The client secret, hashed with salt, if this client is confidential.

A confidential client requires its secret to be included when used. If this value is null, this client is a public client.

Implementation

@Column(nullable: true)
String? hashedSecret;