/** * 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. */ /** * * @export * @interface ContentType */ export interface ContentType { /** * * @type {number} * @memberof ContentType */ readonly id: number; /** * * @type {string} * @memberof ContentType */ readonly appLabel: string; /** * * @type {string} * @memberof ContentType */ readonly model: string; /** * * @type {string} * @memberof ContentType */ readonly verboseNamePlural: string; } /** * Check if a given object implements the ContentType interface. */ export declare function instanceOfContentType(value: object): value is ContentType; export declare function ContentTypeFromJSON(json: any): ContentType; export declare function ContentTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContentType; export declare function ContentTypeToJSON(json: any): ContentType; export declare function ContentTypeToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ContentType.d.ts.map