/** * 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. */ /** * Provider Serializer * @export * @interface Provider */ export interface Provider { /** * * @type {number} * @memberof Provider */ readonly pk: number; /** * * @type {string} * @memberof Provider */ name: string; /** * Flow used for authentication when the associated application is accessed by an un-authenticated user. * @type {string} * @memberof Provider */ authenticationFlow?: string | null; /** * Flow used when authorizing this provider. * @type {string} * @memberof Provider */ authorizationFlow: string; /** * Flow used ending the session from a provider. * @type {string} * @memberof Provider */ invalidationFlow: string; /** * * @type {Array} * @memberof Provider */ propertyMappings?: Array; /** * Get object component so that we know how to edit the object * @type {string} * @memberof Provider */ readonly component: string; /** * Internal application name, used in URLs. * @type {string} * @memberof Provider */ readonly assignedApplicationSlug: string; /** * Application's display Name. * @type {string} * @memberof Provider */ readonly assignedApplicationName: string; /** * Internal application name, used in URLs. * @type {string} * @memberof Provider */ readonly assignedBackchannelApplicationSlug: string; /** * Application's display Name. * @type {string} * @memberof Provider */ readonly assignedBackchannelApplicationName: string; /** * Return object's verbose_name * @type {string} * @memberof Provider */ readonly verboseName: string; /** * Return object's plural verbose_name * @type {string} * @memberof Provider */ readonly verboseNamePlural: string; /** * Return internal model name * @type {string} * @memberof Provider */ readonly metaModelName: string; } /** * Check if a given object implements the Provider interface. */ export declare function instanceOfProvider(value: object): value is Provider; export declare function ProviderFromJSON(json: any): Provider; export declare function ProviderFromJSONTyped(json: any, ignoreDiscriminator: boolean): Provider; export declare function ProviderToJSON(json: any): Provider; export declare function ProviderToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=Provider.d.ts.map