ClientRegistrationResponse
type ClientRegistrationResponse = Omit<RawClientRegistrationResponse, "clientIdIssuedAt" | "clientSecretExpiresAt" | "scope"> & {
clientIdIssuedAt?: Date;
clientSecretExpiresAt?: Date | null;
scope?: Permission[];
};
Response from a successful dynamic client registration.
Type Declaration
| Name | Type | Description |
|---|---|---|
clientIdIssuedAt? | Date | - |
clientSecretExpiresAt? | Date | null | null indicates the client secret never expires. Absent when no secret is issued. |
scope? | Permission[] | - |