UNPKG

umbraco-management-api-client

Version:

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

51 lines (50 loc) 1.74 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 DataTypeContentTypeReferenceModel */ export interface DataTypeContentTypeReferenceModel { /** * * @type {string} * @memberof DataTypeContentTypeReferenceModel */ id: string; /** * * @type {string} * @memberof DataTypeContentTypeReferenceModel */ type: string | null; /** * * @type {string} * @memberof DataTypeContentTypeReferenceModel */ name: string | null; /** * * @type {string} * @memberof DataTypeContentTypeReferenceModel */ icon: string | null; } /** * Check if a given object implements the DataTypeContentTypeReferenceModel interface. */ export declare function instanceOfDataTypeContentTypeReferenceModel(value: object): value is DataTypeContentTypeReferenceModel; export declare function DataTypeContentTypeReferenceModelFromJSON(json: any): DataTypeContentTypeReferenceModel; export declare function DataTypeContentTypeReferenceModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): DataTypeContentTypeReferenceModel; export declare function DataTypeContentTypeReferenceModelToJSON(json: any): DataTypeContentTypeReferenceModel; export declare function DataTypeContentTypeReferenceModelToJSONTyped(value?: DataTypeContentTypeReferenceModel | null, ignoreDiscriminator?: boolean): any;