/* tslint:disable */ /* eslint-disable */ /** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.2.3-rc1 * 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 { /** * * @type {boolean} * @memberof CurrentBrandFlags */ enterpriseAuditIncludeExpandedDiff: boolean; /** * * @type {boolean} * @memberof CurrentBrandFlags */ policiesBufferedAccessView: boolean; /** * * @type {boolean} * @memberof CurrentBrandFlags */ flowsContinuousLogin: boolean; /** * * @type {boolean} * @memberof CurrentBrandFlags */ flowsRefreshOthers: boolean; } /** * Check if a given object implements the CurrentBrandFlags interface. */ export function instanceOfCurrentBrandFlags(value: object): value is CurrentBrandFlags { if (!('enterpriseAuditIncludeExpandedDiff' in value) || value['enterpriseAuditIncludeExpandedDiff'] === undefined) return false; if (!('policiesBufferedAccessView' in value) || value['policiesBufferedAccessView'] === undefined) return false; 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 { 'enterpriseAuditIncludeExpandedDiff': json['enterprise_audit_include_expanded_diff'], 'policiesBufferedAccessView': json['policies_buffered_access_view'], '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 { 'enterprise_audit_include_expanded_diff': value['enterpriseAuditIncludeExpandedDiff'], 'policies_buffered_access_view': value['policiesBufferedAccessView'], 'flows_continuous_login': value['flowsContinuousLogin'], 'flows_refresh_others': value['flowsRefreshOthers'], }; }