/** * 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. */ /** * Serializer for SourceType * @export * @interface SourceType */ export interface SourceType { /** * * @type {string} * @memberof SourceType */ name: string; /** * * @type {string} * @memberof SourceType */ verboseName: string; /** * * @type {boolean} * @memberof SourceType */ urlsCustomizable: boolean; /** * * @type {string} * @memberof SourceType */ readonly requestTokenUrl: string | null; /** * * @type {string} * @memberof SourceType */ readonly authorizationUrl: string | null; /** * * @type {string} * @memberof SourceType */ readonly accessTokenUrl: string | null; /** * * @type {string} * @memberof SourceType */ readonly profileUrl: string | null; /** * * @type {string} * @memberof SourceType */ readonly oidcWellKnownUrl: string | null; /** * * @type {string} * @memberof SourceType */ readonly oidcJwksUrl: string | null; } /** * Check if a given object implements the SourceType interface. */ export declare function instanceOfSourceType(value: object): value is SourceType; export declare function SourceTypeFromJSON(json: any): SourceType; export declare function SourceTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): SourceType; export declare function SourceTypeToJSON(json: any): SourceType; export declare function SourceTypeToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SourceType.d.ts.map