Class: CreateAuthClientSecretResponse
api-login/auth/dto/create-auth-client-secret.dto.CreateAuthClientSecretResponse
Response when creating a new client secret for an auth client. Contains the original secret text
Constructors
constructor
• new CreateAuthClientSecretResponse()
Properties
censored
• censored: string
The 5 letter prefix of the original client secret text plus stars for identification of the secret by the user
Example
"1a2b3**********"
Defined in
gropius-login-service/backend/src/api-login/auth/dto/create-auth-client-secret.dto.ts:18
fingerprint
• fingerprint: string
The fingerprint of the hash of the client secret. Used as identifier to delete the secret.
Example
"0123456789abcdef"
Defined in
gropius-login-service/backend/src/api-login/auth/dto/create-auth-client-secret.dto.ts:25
secretText
• secretText: string
The generated client secret text. This is the data that must be given for request that require authentication
Example
"a01b23c45d67e89f"
Defined in
gropius-login-service/backend/src/api-login/auth/dto/create-auth-client-secret.dto.ts:12