UNPKG

umbraco-management-api-client

Version:

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

34 lines (33 loc) 1.38 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 MoveDictionaryRequestModel */ export interface MoveDictionaryRequestModel { /** * * @type {ReferenceByIdModel} * @memberof MoveDictionaryRequestModel */ target?: ReferenceByIdModel | null; } /** * Check if a given object implements the MoveDictionaryRequestModel interface. */ export declare function instanceOfMoveDictionaryRequestModel(value: object): value is MoveDictionaryRequestModel; export declare function MoveDictionaryRequestModelFromJSON(json: any): MoveDictionaryRequestModel; export declare function MoveDictionaryRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): MoveDictionaryRequestModel; export declare function MoveDictionaryRequestModelToJSON(json: any): MoveDictionaryRequestModel; export declare function MoveDictionaryRequestModelToJSONTyped(value?: MoveDictionaryRequestModel | null, ignoreDiscriminator?: boolean): any;