UNPKG

umbraco-management-api-client

Version:

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

39 lines (38 loc) 1.5 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 DataTypePropertyPresentationModel */ export interface DataTypePropertyPresentationModel { /** * * @type {string} * @memberof DataTypePropertyPresentationModel */ alias: string; /** * * @type {any} * @memberof DataTypePropertyPresentationModel */ value?: any | null; } /** * Check if a given object implements the DataTypePropertyPresentationModel interface. */ export declare function instanceOfDataTypePropertyPresentationModel(value: object): value is DataTypePropertyPresentationModel; export declare function DataTypePropertyPresentationModelFromJSON(json: any): DataTypePropertyPresentationModel; export declare function DataTypePropertyPresentationModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): DataTypePropertyPresentationModel; export declare function DataTypePropertyPresentationModelToJSON(json: any): DataTypePropertyPresentationModel; export declare function DataTypePropertyPresentationModelToJSONTyped(value?: DataTypePropertyPresentationModel | null, ignoreDiscriminator?: boolean): any;