UNPKG

umbraco-management-api-client

Version:

TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)

52 lines (51 loc) 2 kB
/** * Umbraco Management API * This shows all APIs available in this version of Umbraco - including all the legacy apis that are available for backward compatibility * * The version of the OpenAPI document: Latest * * * 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 { PasswordConfigurationResponseModel } from './PasswordConfigurationResponseModel'; /** * * @export * @interface CurrentUserConfigurationResponseModel */ export interface CurrentUserConfigurationResponseModel { /** * * @type {boolean} * @memberof CurrentUserConfigurationResponseModel */ keepUserLoggedIn: boolean; /** * * @type {PasswordConfigurationResponseModel} * @memberof CurrentUserConfigurationResponseModel */ passwordConfiguration: PasswordConfigurationResponseModel; /** * * @type {boolean} * @memberof CurrentUserConfigurationResponseModel */ allowChangePassword: boolean; /** * * @type {boolean} * @memberof CurrentUserConfigurationResponseModel */ allowTwoFactor: boolean; } /** * Check if a given object implements the CurrentUserConfigurationResponseModel interface. */ export declare function instanceOfCurrentUserConfigurationResponseModel(value: object): value is CurrentUserConfigurationResponseModel; export declare function CurrentUserConfigurationResponseModelFromJSON(json: any): CurrentUserConfigurationResponseModel; export declare function CurrentUserConfigurationResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): CurrentUserConfigurationResponseModel; export declare function CurrentUserConfigurationResponseModelToJSON(json: any): CurrentUserConfigurationResponseModel; export declare function CurrentUserConfigurationResponseModelToJSONTyped(value?: CurrentUserConfigurationResponseModel | null, ignoreDiscriminator?: boolean): any;