/** * 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. */ import type { LoginChallengeTypes } from './LoginChallengeTypes'; /** * Serializer for Login buttons of sources * @export * @interface LoginSource */ export interface LoginSource { /** * * @type {string} * @memberof LoginSource */ name: string; /** * * @type {string} * @memberof LoginSource */ iconUrl?: string | null; /** * * @type {LoginChallengeTypes} * @memberof LoginSource */ challenge: LoginChallengeTypes; } /** * Check if a given object implements the LoginSource interface. */ export declare function instanceOfLoginSource(value: object): value is LoginSource; export declare function LoginSourceFromJSON(json: any): LoginSource; export declare function LoginSourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): LoginSource; export declare function LoginSourceToJSON(json: any): LoginSource; export declare function LoginSourceToJSONTyped(value?: LoginSource | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=LoginSource.d.ts.map