/** * 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. */ /** * Serializer for blueprint metadata * @export * @interface Metadata */ export interface Metadata { /** * * @type {string} * @memberof Metadata */ name: string; /** * * @type {{ [key: string]: any; }} * @memberof Metadata */ labels: { [key: string]: any; }; } /** * Check if a given object implements the Metadata interface. */ export declare function instanceOfMetadata(value: object): value is Metadata; export declare function MetadataFromJSON(json: any): Metadata; export declare function MetadataFromJSONTyped(json: any, ignoreDiscriminator: boolean): Metadata; export declare function MetadataToJSON(json: any): Metadata; export declare function MetadataToJSONTyped(value?: Metadata | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=Metadata.d.ts.map