UNPKG

umbraco-management-api-client

Version:

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

58 lines (57 loc) 2.21 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 CreateMediaTypePropertyTypeContainerRequestModel */ export interface CreateMediaTypePropertyTypeContainerRequestModel { /** * * @type {string} * @memberof CreateMediaTypePropertyTypeContainerRequestModel */ id: string; /** * * @type {ReferenceByIdModel} * @memberof CreateMediaTypePropertyTypeContainerRequestModel */ parent?: ReferenceByIdModel | null; /** * * @type {string} * @memberof CreateMediaTypePropertyTypeContainerRequestModel */ name?: string | null; /** * * @type {string} * @memberof CreateMediaTypePropertyTypeContainerRequestModel */ type: string; /** * * @type {number} * @memberof CreateMediaTypePropertyTypeContainerRequestModel */ sortOrder: number; } /** * Check if a given object implements the CreateMediaTypePropertyTypeContainerRequestModel interface. */ export declare function instanceOfCreateMediaTypePropertyTypeContainerRequestModel(value: object): value is CreateMediaTypePropertyTypeContainerRequestModel; export declare function CreateMediaTypePropertyTypeContainerRequestModelFromJSON(json: any): CreateMediaTypePropertyTypeContainerRequestModel; export declare function CreateMediaTypePropertyTypeContainerRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateMediaTypePropertyTypeContainerRequestModel; export declare function CreateMediaTypePropertyTypeContainerRequestModelToJSON(json: any): CreateMediaTypePropertyTypeContainerRequestModel; export declare function CreateMediaTypePropertyTypeContainerRequestModelToJSONTyped(value?: CreateMediaTypePropertyTypeContainerRequestModel | null, ignoreDiscriminator?: boolean): any;