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 CopyDataTypeRequestModel */ export interface CopyDataTypeRequestModel { /** * * @type {ReferenceByIdModel} * @memberof CopyDataTypeRequestModel */ target?: ReferenceByIdModel | null; } /** * Check if a given object implements the CopyDataTypeRequestModel interface. */ export declare function instanceOfCopyDataTypeRequestModel(value: object): value is CopyDataTypeRequestModel; export declare function CopyDataTypeRequestModelFromJSON(json: any): CopyDataTypeRequestModel; export declare function CopyDataTypeRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): CopyDataTypeRequestModel; export declare function CopyDataTypeRequestModelToJSON(json: any): CopyDataTypeRequestModel; export declare function CopyDataTypeRequestModelToJSONTyped(value?: CopyDataTypeRequestModel | null, ignoreDiscriminator?: boolean): any;