UNPKG

umbraco-management-api-client

Version:

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

34 lines (33 loc) 1.41 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 MoveDocumentTypeRequestModel */ export interface MoveDocumentTypeRequestModel { /** * * @type {ReferenceByIdModel} * @memberof MoveDocumentTypeRequestModel */ target?: ReferenceByIdModel | null; } /** * Check if a given object implements the MoveDocumentTypeRequestModel interface. */ export declare function instanceOfMoveDocumentTypeRequestModel(value: object): value is MoveDocumentTypeRequestModel; export declare function MoveDocumentTypeRequestModelFromJSON(json: any): MoveDocumentTypeRequestModel; export declare function MoveDocumentTypeRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): MoveDocumentTypeRequestModel; export declare function MoveDocumentTypeRequestModelToJSON(json: any): MoveDocumentTypeRequestModel; export declare function MoveDocumentTypeRequestModelToJSONTyped(value?: MoveDocumentTypeRequestModel | null, ignoreDiscriminator?: boolean): any;