/** * 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. */ /** * PlexSourcePropertyMapping Serializer * @export * @interface PlexSourcePropertyMapping */ export interface PlexSourcePropertyMapping { /** * * @type {string} * @memberof PlexSourcePropertyMapping */ readonly pk: 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 PlexSourcePropertyMapping */ managed?: string | null; /** * * @type {string} * @memberof PlexSourcePropertyMapping */ name: string; /** * * @type {string} * @memberof PlexSourcePropertyMapping */ expression: string; /** * Get object's component so that we know how to edit the object * @type {string} * @memberof PlexSourcePropertyMapping */ readonly component: string; /** * Return object's verbose_name * @type {string} * @memberof PlexSourcePropertyMapping */ readonly verboseName: string; /** * Return object's plural verbose_name * @type {string} * @memberof PlexSourcePropertyMapping */ readonly verboseNamePlural: string; /** * Return internal model name * @type {string} * @memberof PlexSourcePropertyMapping */ readonly metaModelName: string; } /** * Check if a given object implements the PlexSourcePropertyMapping interface. */ export declare function instanceOfPlexSourcePropertyMapping(value: object): value is PlexSourcePropertyMapping; export declare function PlexSourcePropertyMappingFromJSON(json: any): PlexSourcePropertyMapping; export declare function PlexSourcePropertyMappingFromJSONTyped(json: any, ignoreDiscriminator: boolean): PlexSourcePropertyMapping; export declare function PlexSourcePropertyMappingToJSON(json: any): PlexSourcePropertyMapping; export declare function PlexSourcePropertyMappingToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PlexSourcePropertyMapping.d.ts.map