umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
52 lines (51 loc) • 1.78 kB
TypeScript
/**
* 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 { RuntimeModeModel } from './RuntimeModeModel';
/**
*
* @export
* @interface ServerInformationResponseModel
*/
export interface ServerInformationResponseModel {
/**
*
* @type {string}
* @memberof ServerInformationResponseModel
*/
version: string;
/**
*
* @type {string}
* @memberof ServerInformationResponseModel
*/
assemblyVersion: string;
/**
*
* @type {string}
* @memberof ServerInformationResponseModel
*/
baseUtcOffset: string;
/**
*
* @type {RuntimeModeModel}
* @memberof ServerInformationResponseModel
*/
runtimeMode: RuntimeModeModel;
}
/**
* Check if a given object implements the ServerInformationResponseModel interface.
*/
export declare function instanceOfServerInformationResponseModel(value: object): value is ServerInformationResponseModel;
export declare function ServerInformationResponseModelFromJSON(json: any): ServerInformationResponseModel;
export declare function ServerInformationResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): ServerInformationResponseModel;
export declare function ServerInformationResponseModelToJSON(json: any): ServerInformationResponseModel;
export declare function ServerInformationResponseModelToJSONTyped(value?: ServerInformationResponseModel | null, ignoreDiscriminator?: boolean): any;