UNPKG

umbraco-management-api-client

Version:

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

39 lines (38 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. */ /** * * @export * @interface LogMessagePropertyPresentationModel */ export interface LogMessagePropertyPresentationModel { /** * * @type {string} * @memberof LogMessagePropertyPresentationModel */ name: string; /** * * @type {string} * @memberof LogMessagePropertyPresentationModel */ value?: string | null; } /** * Check if a given object implements the LogMessagePropertyPresentationModel interface. */ export declare function instanceOfLogMessagePropertyPresentationModel(value: object): value is LogMessagePropertyPresentationModel; export declare function LogMessagePropertyPresentationModelFromJSON(json: any): LogMessagePropertyPresentationModel; export declare function LogMessagePropertyPresentationModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): LogMessagePropertyPresentationModel; export declare function LogMessagePropertyPresentationModelToJSON(json: any): LogMessagePropertyPresentationModel; export declare function LogMessagePropertyPresentationModelToJSONTyped(value?: LogMessagePropertyPresentationModel | null, ignoreDiscriminator?: boolean): any;