20 lines
533 B
TypeScript
20 lines
533 B
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
/**
|
|
* Data transfer object representing connection information for an OIDC client.
|
|
*/
|
|
export type oidcConnectResponseDto = {
|
|
/**
|
|
* Client identifier used for the OIDC connection.
|
|
*/
|
|
clientId?: string | null;
|
|
/**
|
|
* Authority URL of the OIDC provider.
|
|
* This is the URL that the client will connect to for authentication.
|
|
*/
|
|
authorityUrl?: string | null;
|
|
};
|
|
|