UNPKG

umbraco-management-api-client

Version:

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

46 lines (45 loc) 1.74 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 { CreateDictionaryItemRequestModelTranslationsInner } from './CreateDictionaryItemRequestModelTranslationsInner'; /** * * @export * @interface DictionaryItemResponseModel */ export interface DictionaryItemResponseModel { /** * * @type {string} * @memberof DictionaryItemResponseModel */ name: string; /** * * @type {Array<CreateDictionaryItemRequestModelTranslationsInner>} * @memberof DictionaryItemResponseModel */ translations: Array<CreateDictionaryItemRequestModelTranslationsInner>; /** * * @type {string} * @memberof DictionaryItemResponseModel */ id: string; } /** * Check if a given object implements the DictionaryItemResponseModel interface. */ export declare function instanceOfDictionaryItemResponseModel(value: object): value is DictionaryItemResponseModel; export declare function DictionaryItemResponseModelFromJSON(json: any): DictionaryItemResponseModel; export declare function DictionaryItemResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): DictionaryItemResponseModel; export declare function DictionaryItemResponseModelToJSON(json: any): DictionaryItemResponseModel; export declare function DictionaryItemResponseModelToJSONTyped(value?: DictionaryItemResponseModel | null, ignoreDiscriminator?: boolean): any;