UNPKG

umbraco-management-api-client

Version:

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

58 lines (57 loc) 2.17 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 { TrackedReferenceMediaTypeModel } from './TrackedReferenceMediaTypeModel'; /** * * @export * @interface MediaTypePropertyTypeReferenceResponseModel */ export interface MediaTypePropertyTypeReferenceResponseModel { /** * * @type {string} * @memberof MediaTypePropertyTypeReferenceResponseModel */ $type: string; /** * * @type {string} * @memberof MediaTypePropertyTypeReferenceResponseModel */ id: string; /** * * @type {string} * @memberof MediaTypePropertyTypeReferenceResponseModel */ name?: string | null; /** * * @type {string} * @memberof MediaTypePropertyTypeReferenceResponseModel */ alias?: string | null; /** * * @type {TrackedReferenceMediaTypeModel} * @memberof MediaTypePropertyTypeReferenceResponseModel */ mediaType: TrackedReferenceMediaTypeModel; } /** * Check if a given object implements the MediaTypePropertyTypeReferenceResponseModel interface. */ export declare function instanceOfMediaTypePropertyTypeReferenceResponseModel(value: object): value is MediaTypePropertyTypeReferenceResponseModel; export declare function MediaTypePropertyTypeReferenceResponseModelFromJSON(json: any): MediaTypePropertyTypeReferenceResponseModel; export declare function MediaTypePropertyTypeReferenceResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): MediaTypePropertyTypeReferenceResponseModel; export declare function MediaTypePropertyTypeReferenceResponseModelToJSON(json: any): MediaTypePropertyTypeReferenceResponseModel; export declare function MediaTypePropertyTypeReferenceResponseModelToJSONTyped(value?: MediaTypePropertyTypeReferenceResponseModel | null, ignoreDiscriminator?: boolean): any;