UNPKG

umbraco-management-api-client

Version:

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

40 lines (39 loc) 1.55 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 ImportDictionaryRequestModel */ export interface ImportDictionaryRequestModel { /** * * @type {ReferenceByIdModel} * @memberof ImportDictionaryRequestModel */ temporaryFile: ReferenceByIdModel; /** * * @type {ReferenceByIdModel} * @memberof ImportDictionaryRequestModel */ parent?: ReferenceByIdModel | null; } /** * Check if a given object implements the ImportDictionaryRequestModel interface. */ export declare function instanceOfImportDictionaryRequestModel(value: object): value is ImportDictionaryRequestModel; export declare function ImportDictionaryRequestModelFromJSON(json: any): ImportDictionaryRequestModel; export declare function ImportDictionaryRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): ImportDictionaryRequestModel; export declare function ImportDictionaryRequestModelToJSON(json: any): ImportDictionaryRequestModel; export declare function ImportDictionaryRequestModelToJSONTyped(value?: ImportDictionaryRequestModel | null, ignoreDiscriminator?: boolean): any;