UNPKG

umbraco-management-api-client

Version:

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

58 lines (57 loc) 2.13 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 { ReferenceByIdModel } from './ReferenceByIdModel'; /** * * @export * @interface MediaTypePropertyTypeContainerResponseModel */ export interface MediaTypePropertyTypeContainerResponseModel { /** * * @type {string} * @memberof MediaTypePropertyTypeContainerResponseModel */ id: string; /** * * @type {ReferenceByIdModel} * @memberof MediaTypePropertyTypeContainerResponseModel */ parent?: ReferenceByIdModel | null; /** * * @type {string} * @memberof MediaTypePropertyTypeContainerResponseModel */ name?: string | null; /** * * @type {string} * @memberof MediaTypePropertyTypeContainerResponseModel */ type: string; /** * * @type {number} * @memberof MediaTypePropertyTypeContainerResponseModel */ sortOrder: number; } /** * Check if a given object implements the MediaTypePropertyTypeContainerResponseModel interface. */ export declare function instanceOfMediaTypePropertyTypeContainerResponseModel(value: object): value is MediaTypePropertyTypeContainerResponseModel; export declare function MediaTypePropertyTypeContainerResponseModelFromJSON(json: any): MediaTypePropertyTypeContainerResponseModel; export declare function MediaTypePropertyTypeContainerResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): MediaTypePropertyTypeContainerResponseModel; export declare function MediaTypePropertyTypeContainerResponseModelToJSON(json: any): MediaTypePropertyTypeContainerResponseModel; export declare function MediaTypePropertyTypeContainerResponseModelToJSONTyped(value?: MediaTypePropertyTypeContainerResponseModel | null, ignoreDiscriminator?: boolean): any;