/** * 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. */ import type { UsedByActionEnum } from './UsedByActionEnum'; /** * A list of all objects referencing the queried object * @export * @interface UsedBy */ export interface UsedBy { /** * * @type {string} * @memberof UsedBy */ app: string; /** * * @type {string} * @memberof UsedBy */ modelName: string; /** * * @type {string} * @memberof UsedBy */ pk: string; /** * * @type {string} * @memberof UsedBy */ name: string; /** * * @type {UsedByActionEnum} * @memberof UsedBy */ action: UsedByActionEnum; } /** * Check if a given object implements the UsedBy interface. */ export declare function instanceOfUsedBy(value: object): value is UsedBy; export declare function UsedByFromJSON(json: any): UsedBy; export declare function UsedByFromJSONTyped(json: any, ignoreDiscriminator: boolean): UsedBy; export declare function UsedByToJSON(json: any): UsedBy; export declare function UsedByToJSONTyped(value?: UsedBy | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UsedBy.d.ts.map