/* tslint:disable */ /* eslint-disable */ /** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.8.0 * 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 { mapValues } from '../runtime'; /** * * @export * @interface CurrentBrandFlags */ export interface CurrentBrandFlags { /** * Upon successful authentication, re-start authentication in other open tabs. * @type {boolean} * @memberof CurrentBrandFlags */ flowsContinuousLogin: boolean; /** * Refresh other tabs after successful authentication. * @type {boolean} * @memberof CurrentBrandFlags * @deprecated */ flowsRefreshOthers: boolean; } /** * Check if a given object implements the CurrentBrandFlags interface. */ export function instanceOfCurrentBrandFlags(value: object): value is CurrentBrandFlags { if (!('flowsContinuousLogin' in value) || value['flowsContinuousLogin'] === undefined) return false; if (!('flowsRefreshOthers' in value) || value['flowsRefreshOthers'] === undefined) return false; return true; } export function CurrentBrandFlagsFromJSON(json: any): CurrentBrandFlags { return CurrentBrandFlagsFromJSONTyped(json, false); } export function CurrentBrandFlagsFromJSONTyped(json: any, ignoreDiscriminator: boolean): CurrentBrandFlags { if (json == null) { return json; } return { 'flowsContinuousLogin': json['flows_continuous_login'], 'flowsRefreshOthers': json['flows_refresh_others'], }; } export function CurrentBrandFlagsToJSON(json: any): CurrentBrandFlags { return CurrentBrandFlagsToJSONTyped(json, false); } export function CurrentBrandFlagsToJSONTyped(value?: CurrentBrandFlags | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'flows_continuous_login': value['flowsContinuousLogin'], 'flows_refresh_others': value['flowsRefreshOthers'], }; }