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 CopyDocumentTypeRequestModel */ export interface CopyDocumentTypeRequestModel { /** * * @type {ReferenceByIdModel} * @memberof CopyDocumentTypeRequestModel */ target?: ReferenceByIdModel | null; } /** * Check if a given object implements the CopyDocumentTypeRequestModel interface. */ export declare function instanceOfCopyDocumentTypeRequestModel(value: object): value is CopyDocumentTypeRequestModel; export declare function CopyDocumentTypeRequestModelFromJSON(json: any): CopyDocumentTypeRequestModel; export declare function CopyDocumentTypeRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): CopyDocumentTypeRequestModel; export declare function CopyDocumentTypeRequestModelToJSON(json: any): CopyDocumentTypeRequestModel; export declare function CopyDocumentTypeRequestModelToJSONTyped(value?: CopyDocumentTypeRequestModel | null, ignoreDiscriminator?: boolean): any;