UNPKG

umbraco-management-api-client

Version:

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

58 lines (57 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 UserConfigurationResponseModel */ export interface UserConfigurationResponseModel { /** * * @type {boolean} * @memberof UserConfigurationResponseModel */ canInviteUsers: boolean; /** * * @type {boolean} * @memberof UserConfigurationResponseModel */ usernameIsEmail: boolean; /** * * @type {PasswordConfigurationResponseModel} * @memberof UserConfigurationResponseModel */ passwordConfiguration: PasswordConfigurationResponseModel; /** * * @type {boolean} * @memberof UserConfigurationResponseModel */ allowChangePassword: boolean; /** * * @type {boolean} * @memberof UserConfigurationResponseModel */ allowTwoFactor: boolean; } /** * Check if a given object implements the UserConfigurationResponseModel interface. */ export declare function instanceOfUserConfigurationResponseModel(value: object): value is UserConfigurationResponseModel; export declare function UserConfigurationResponseModelFromJSON(json: any): UserConfigurationResponseModel; export declare function UserConfigurationResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserConfigurationResponseModel; export declare function UserConfigurationResponseModelToJSON(json: any): UserConfigurationResponseModel; export declare function UserConfigurationResponseModelToJSONTyped(value?: UserConfigurationResponseModel | null, ignoreDiscriminator?: boolean): any;