/* tslint:disable */ /* eslint-disable */ /** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.8.0-rc7 * 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. */ /** * * @export */ export const ObjectAttributeTypeEnum = { Text: 'text', Number: 'number', Boolean: 'boolean', UnknownDefaultOpenApi: '11184809' } as const; export type ObjectAttributeTypeEnum = typeof ObjectAttributeTypeEnum[keyof typeof ObjectAttributeTypeEnum]; export function instanceOfObjectAttributeTypeEnum(value: any): boolean { for (const key in ObjectAttributeTypeEnum) { if (Object.prototype.hasOwnProperty.call(ObjectAttributeTypeEnum, key)) { if (ObjectAttributeTypeEnum[key as keyof typeof ObjectAttributeTypeEnum] === value) { return true; } } } return false; } export function ObjectAttributeTypeEnumFromJSON(json: any): ObjectAttributeTypeEnum { return ObjectAttributeTypeEnumFromJSONTyped(json, false); } export function ObjectAttributeTypeEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): ObjectAttributeTypeEnum { return json as ObjectAttributeTypeEnum; } export function ObjectAttributeTypeEnumToJSON(value?: ObjectAttributeTypeEnum | null): any { return value as any; } export function ObjectAttributeTypeEnumToJSONTyped(value: any, ignoreDiscriminator: boolean): ObjectAttributeTypeEnum { return value as ObjectAttributeTypeEnum; }