UNPKG

umbraco-management-api-client

Version:

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

96 lines (95 loc) 2.98 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 { PropertyTypeValidationModel } from './PropertyTypeValidationModel'; import type { PropertyTypeAppearanceModel } from './PropertyTypeAppearanceModel'; import type { ReferenceByIdModel } from './ReferenceByIdModel'; /** * * @export * @interface MediaTypePropertyTypeResponseModel */ export interface MediaTypePropertyTypeResponseModel { /** * * @type {string} * @memberof MediaTypePropertyTypeResponseModel */ id: string; /** * * @type {ReferenceByIdModel} * @memberof MediaTypePropertyTypeResponseModel */ container?: ReferenceByIdModel | null; /** * * @type {number} * @memberof MediaTypePropertyTypeResponseModel */ sortOrder: number; /** * * @type {string} * @memberof MediaTypePropertyTypeResponseModel */ alias: string; /** * * @type {string} * @memberof MediaTypePropertyTypeResponseModel */ name: string; /** * * @type {string} * @memberof MediaTypePropertyTypeResponseModel */ description?: string | null; /** * * @type {ReferenceByIdModel} * @memberof MediaTypePropertyTypeResponseModel */ dataType: ReferenceByIdModel; /** * * @type {boolean} * @memberof MediaTypePropertyTypeResponseModel */ variesByCulture: boolean; /** * * @type {boolean} * @memberof MediaTypePropertyTypeResponseModel */ variesBySegment: boolean; /** * * @type {PropertyTypeValidationModel} * @memberof MediaTypePropertyTypeResponseModel */ validation: PropertyTypeValidationModel; /** * * @type {PropertyTypeAppearanceModel} * @memberof MediaTypePropertyTypeResponseModel */ appearance: PropertyTypeAppearanceModel; } /** * Check if a given object implements the MediaTypePropertyTypeResponseModel interface. */ export declare function instanceOfMediaTypePropertyTypeResponseModel(value: object): value is MediaTypePropertyTypeResponseModel; export declare function MediaTypePropertyTypeResponseModelFromJSON(json: any): MediaTypePropertyTypeResponseModel; export declare function MediaTypePropertyTypeResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): MediaTypePropertyTypeResponseModel; export declare function MediaTypePropertyTypeResponseModelToJSON(json: any): MediaTypePropertyTypeResponseModel; export declare function MediaTypePropertyTypeResponseModelToJSONTyped(value?: MediaTypePropertyTypeResponseModel | null, ignoreDiscriminator?: boolean): any;