UNPKG

umbraco-management-api-client

Version:

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

40 lines (39 loc) 1.53 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. */ import type { TelemetryLevelModel } from './TelemetryLevelModel'; /** * * @export * @interface ConsentLevelPresentationModel */ export interface ConsentLevelPresentationModel { /** * * @type {TelemetryLevelModel} * @memberof ConsentLevelPresentationModel */ level: TelemetryLevelModel; /** * * @type {string} * @memberof ConsentLevelPresentationModel */ description: string; } /** * Check if a given object implements the ConsentLevelPresentationModel interface. */ export declare function instanceOfConsentLevelPresentationModel(value: object): value is ConsentLevelPresentationModel; export declare function ConsentLevelPresentationModelFromJSON(json: any): ConsentLevelPresentationModel; export declare function ConsentLevelPresentationModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConsentLevelPresentationModel; export declare function ConsentLevelPresentationModelToJSON(json: any): ConsentLevelPresentationModel; export declare function ConsentLevelPresentationModelToJSONTyped(value?: ConsentLevelPresentationModel | null, ignoreDiscriminator?: boolean): any;