UNPKG

umbraco-management-api-client

Version:

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

52 lines (51 loc) 1.82 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 DictionaryOverviewResponseModel */ export interface DictionaryOverviewResponseModel { /** * * @type {string} * @memberof DictionaryOverviewResponseModel */ name?: string | null; /** * * @type {string} * @memberof DictionaryOverviewResponseModel */ id: string; /** * * @type {ReferenceByIdModel} * @memberof DictionaryOverviewResponseModel */ parent?: ReferenceByIdModel | null; /** * * @type {Array<string>} * @memberof DictionaryOverviewResponseModel */ translatedIsoCodes: Array<string>; } /** * Check if a given object implements the DictionaryOverviewResponseModel interface. */ export declare function instanceOfDictionaryOverviewResponseModel(value: object): value is DictionaryOverviewResponseModel; export declare function DictionaryOverviewResponseModelFromJSON(json: any): DictionaryOverviewResponseModel; export declare function DictionaryOverviewResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): DictionaryOverviewResponseModel; export declare function DictionaryOverviewResponseModelToJSON(json: any): DictionaryOverviewResponseModel; export declare function DictionaryOverviewResponseModelToJSONTyped(value?: DictionaryOverviewResponseModel | null, ignoreDiscriminator?: boolean): any;