UNPKG

umbraco-management-api-client

Version:

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

45 lines (44 loc) 1.64 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 ServerConfigurationResponseModel */ export interface ServerConfigurationResponseModel { /** * * @type {boolean} * @memberof ServerConfigurationResponseModel */ allowPasswordReset: boolean; /** * * @type {number} * @memberof ServerConfigurationResponseModel */ versionCheckPeriod: number; /** * * @type {boolean} * @memberof ServerConfigurationResponseModel */ allowLocalLogin: boolean; } /** * Check if a given object implements the ServerConfigurationResponseModel interface. */ export declare function instanceOfServerConfigurationResponseModel(value: object): value is ServerConfigurationResponseModel; export declare function ServerConfigurationResponseModelFromJSON(json: any): ServerConfigurationResponseModel; export declare function ServerConfigurationResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): ServerConfigurationResponseModel; export declare function ServerConfigurationResponseModelToJSON(json: any): ServerConfigurationResponseModel; export declare function ServerConfigurationResponseModelToJSONTyped(value?: ServerConfigurationResponseModel | null, ignoreDiscriminator?: boolean): any;