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