umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
33 lines (32 loc) • 1.31 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.
*/
/**
*
* @export
* @interface ProfilingStatusResponseModel
*/
export interface ProfilingStatusResponseModel {
/**
*
* @type {boolean}
* @memberof ProfilingStatusResponseModel
*/
enabled: boolean;
}
/**
* Check if a given object implements the ProfilingStatusResponseModel interface.
*/
export declare function instanceOfProfilingStatusResponseModel(value: object): value is ProfilingStatusResponseModel;
export declare function ProfilingStatusResponseModelFromJSON(json: any): ProfilingStatusResponseModel;
export declare function ProfilingStatusResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProfilingStatusResponseModel;
export declare function ProfilingStatusResponseModelToJSON(json: any): ProfilingStatusResponseModel;
export declare function ProfilingStatusResponseModelToJSONTyped(value?: ProfilingStatusResponseModel | null, ignoreDiscriminator?: boolean): any;