UNPKG

umbraco-management-api-client

Version:

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

57 lines (56 loc) 1.93 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. */ /** * * @export * @interface PasswordConfigurationResponseModel */ export interface PasswordConfigurationResponseModel { /** * * @type {number} * @memberof PasswordConfigurationResponseModel */ minimumPasswordLength: number; /** * * @type {boolean} * @memberof PasswordConfigurationResponseModel */ requireNonLetterOrDigit: boolean; /** * * @type {boolean} * @memberof PasswordConfigurationResponseModel */ requireDigit: boolean; /** * * @type {boolean} * @memberof PasswordConfigurationResponseModel */ requireLowercase: boolean; /** * * @type {boolean} * @memberof PasswordConfigurationResponseModel */ requireUppercase: boolean; } /** * Check if a given object implements the PasswordConfigurationResponseModel interface. */ export declare function instanceOfPasswordConfigurationResponseModel(value: object): value is PasswordConfigurationResponseModel; export declare function PasswordConfigurationResponseModelFromJSON(json: any): PasswordConfigurationResponseModel; export declare function PasswordConfigurationResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): PasswordConfigurationResponseModel; export declare function PasswordConfigurationResponseModelToJSON(json: any): PasswordConfigurationResponseModel; export declare function PasswordConfigurationResponseModelToJSONTyped(value?: PasswordConfigurationResponseModel | null, ignoreDiscriminator?: boolean): any;