UNPKG

umbraco-management-api-client

Version:

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

39 lines (38 loc) 1.54 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 ServerConfigurationItemResponseModel */ export interface ServerConfigurationItemResponseModel { /** * * @type {string} * @memberof ServerConfigurationItemResponseModel */ name: string; /** * * @type {string} * @memberof ServerConfigurationItemResponseModel */ data: string; } /** * Check if a given object implements the ServerConfigurationItemResponseModel interface. */ export declare function instanceOfServerConfigurationItemResponseModel(value: object): value is ServerConfigurationItemResponseModel; export declare function ServerConfigurationItemResponseModelFromJSON(json: any): ServerConfigurationItemResponseModel; export declare function ServerConfigurationItemResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): ServerConfigurationItemResponseModel; export declare function ServerConfigurationItemResponseModelToJSON(json: any): ServerConfigurationItemResponseModel; export declare function ServerConfigurationItemResponseModelToJSONTyped(value?: ServerConfigurationItemResponseModel | null, ignoreDiscriminator?: boolean): any;