umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
34 lines (33 loc) • 1.35 kB
TypeScript
/**
* 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 MoveDocumentRequestModel
*/
export interface MoveDocumentRequestModel {
/**
*
* @type {ReferenceByIdModel}
* @memberof MoveDocumentRequestModel
*/
target?: ReferenceByIdModel | null;
}
/**
* Check if a given object implements the MoveDocumentRequestModel interface.
*/
export declare function instanceOfMoveDocumentRequestModel(value: object): value is MoveDocumentRequestModel;
export declare function MoveDocumentRequestModelFromJSON(json: any): MoveDocumentRequestModel;
export declare function MoveDocumentRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): MoveDocumentRequestModel;
export declare function MoveDocumentRequestModelToJSON(json: any): MoveDocumentRequestModel;
export declare function MoveDocumentRequestModelToJSONTyped(value?: MoveDocumentRequestModel | null, ignoreDiscriminator?: boolean): any;