/** * 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 type { ObjectAttributeTypeEnum } from './ObjectAttributeTypeEnum'; /** * * @export * @interface ObjectAttributeRequest */ export interface ObjectAttributeRequest { /** * * @type {string} * @memberof ObjectAttributeRequest */ objectType: string; /** * * @type {boolean} * @memberof ObjectAttributeRequest */ enabled?: boolean; /** * * @type {string} * @memberof ObjectAttributeRequest */ key: string; /** * * @type {string} * @memberof ObjectAttributeRequest */ label: string; /** * * @type {string} * @memberof ObjectAttributeRequest */ regex?: string; /** * * @type {ObjectAttributeTypeEnum} * @memberof ObjectAttributeRequest */ type: ObjectAttributeTypeEnum; /** * * @type {string} * @memberof ObjectAttributeRequest */ group?: string; /** * Objects that are managed by authentik. These objects are created and updated automatically. This flag only indicates that an object can be overwritten by migrations. You can still modify the objects via the API, but expect changes to be overwritten in a later update. * @type {string} * @memberof ObjectAttributeRequest */ managed?: string | null; /** * * @type {boolean} * @memberof ObjectAttributeRequest */ isUnique?: boolean; /** * * @type {boolean} * @memberof ObjectAttributeRequest */ isRequired?: boolean; } /** * Check if a given object implements the ObjectAttributeRequest interface. */ export declare function instanceOfObjectAttributeRequest(value: object): value is ObjectAttributeRequest; export declare function ObjectAttributeRequestFromJSON(json: any): ObjectAttributeRequest; export declare function ObjectAttributeRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ObjectAttributeRequest; export declare function ObjectAttributeRequestToJSON(json: any): ObjectAttributeRequest; export declare function ObjectAttributeRequestToJSONTyped(value?: ObjectAttributeRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ObjectAttributeRequest.d.ts.map