/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2025.6.3 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * OAuth2 Provider Metadata serializer * @export * @interface OAuth2ProviderSetupURLs */ export interface OAuth2ProviderSetupURLs { /** * * @type {string} * @memberof OAuth2ProviderSetupURLs */ readonly issuer: string; /** * * @type {string} * @memberof OAuth2ProviderSetupURLs */ readonly authorize: string; /** * * @type {string} * @memberof OAuth2ProviderSetupURLs */ readonly token: string; /** * * @type {string} * @memberof OAuth2ProviderSetupURLs */ readonly userInfo: string; /** * * @type {string} * @memberof OAuth2ProviderSetupURLs */ readonly providerInfo: string; /** * * @type {string} * @memberof OAuth2ProviderSetupURLs */ readonly logout: string; /** * * @type {string} * @memberof OAuth2ProviderSetupURLs */ readonly jwks: string; } /** * Check if a given object implements the OAuth2ProviderSetupURLs interface. */ export declare function instanceOfOAuth2ProviderSetupURLs(value: object): value is OAuth2ProviderSetupURLs; export declare function OAuth2ProviderSetupURLsFromJSON(json: any): OAuth2ProviderSetupURLs; export declare function OAuth2ProviderSetupURLsFromJSONTyped(json: any, ignoreDiscriminator: boolean): OAuth2ProviderSetupURLs; export declare function OAuth2ProviderSetupURLsToJSON(json: any): OAuth2ProviderSetupURLs; export declare function OAuth2ProviderSetupURLsToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=OAuth2ProviderSetupURLs.d.ts.map