UNPKG

umbraco-management-api-client

Version:

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

34 lines (33 loc) 1.37 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 MoveMediaTypeRequestModel */ export interface MoveMediaTypeRequestModel { /** * * @type {ReferenceByIdModel} * @memberof MoveMediaTypeRequestModel */ target?: ReferenceByIdModel | null; } /** * Check if a given object implements the MoveMediaTypeRequestModel interface. */ export declare function instanceOfMoveMediaTypeRequestModel(value: object): value is MoveMediaTypeRequestModel; export declare function MoveMediaTypeRequestModelFromJSON(json: any): MoveMediaTypeRequestModel; export declare function MoveMediaTypeRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): MoveMediaTypeRequestModel; export declare function MoveMediaTypeRequestModelToJSON(json: any): MoveMediaTypeRequestModel; export declare function MoveMediaTypeRequestModelToJSONTyped(value?: MoveMediaTypeRequestModel | null, ignoreDiscriminator?: boolean): any;