/** * 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. */ /** * ScopeMapping Serializer * @export * @interface ScopeMappingRequest */ export interface ScopeMappingRequest { /** * 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 ScopeMappingRequest */ managed?: string | null; /** * * @type {string} * @memberof ScopeMappingRequest */ name: string; /** * * @type {string} * @memberof ScopeMappingRequest */ expression: string; /** * Scope name requested by the client * @type {string} * @memberof ScopeMappingRequest */ scopeName: string; /** * Description shown to the user when consenting. If left empty, the user won't be informed. * @type {string} * @memberof ScopeMappingRequest */ description?: string; } /** * Check if a given object implements the ScopeMappingRequest interface. */ export declare function instanceOfScopeMappingRequest(value: object): value is ScopeMappingRequest; export declare function ScopeMappingRequestFromJSON(json: any): ScopeMappingRequest; export declare function ScopeMappingRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ScopeMappingRequest; export declare function ScopeMappingRequestToJSON(json: any): ScopeMappingRequest; export declare function ScopeMappingRequestToJSONTyped(value?: ScopeMappingRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ScopeMappingRequest.d.ts.map