UNPKG

umbraco-management-api-client

Version:

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

46 lines (45 loc) 1.59 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 CopyDocumentRequestModel */ export interface CopyDocumentRequestModel { /** * * @type {ReferenceByIdModel} * @memberof CopyDocumentRequestModel */ target?: ReferenceByIdModel | null; /** * * @type {boolean} * @memberof CopyDocumentRequestModel */ relateToOriginal: boolean; /** * * @type {boolean} * @memberof CopyDocumentRequestModel */ includeDescendants: boolean; } /** * Check if a given object implements the CopyDocumentRequestModel interface. */ export declare function instanceOfCopyDocumentRequestModel(value: object): value is CopyDocumentRequestModel; export declare function CopyDocumentRequestModelFromJSON(json: any): CopyDocumentRequestModel; export declare function CopyDocumentRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): CopyDocumentRequestModel; export declare function CopyDocumentRequestModelToJSON(json: any): CopyDocumentRequestModel; export declare function CopyDocumentRequestModelToJSONTyped(value?: CopyDocumentRequestModel | null, ignoreDiscriminator?: boolean): any;