UNPKG

umbraco-management-api-client

Version:

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

34 lines (33 loc) 1.35 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 MoveDataTypeRequestModel */ export interface MoveDataTypeRequestModel { /** * * @type {ReferenceByIdModel} * @memberof MoveDataTypeRequestModel */ target?: ReferenceByIdModel | null; } /** * Check if a given object implements the MoveDataTypeRequestModel interface. */ export declare function instanceOfMoveDataTypeRequestModel(value: object): value is MoveDataTypeRequestModel; export declare function MoveDataTypeRequestModelFromJSON(json: any): MoveDataTypeRequestModel; export declare function MoveDataTypeRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): MoveDataTypeRequestModel; export declare function MoveDataTypeRequestModelToJSON(json: any): MoveDataTypeRequestModel; export declare function MoveDataTypeRequestModelToJSONTyped(value?: MoveDataTypeRequestModel | null, ignoreDiscriminator?: boolean): any;